Souvik
Souvik

Reputation: 1269

REST API code for Domain and User creation in Nuxeo

I am very new to Nuxeo and due to customization I have to change some REST API functionalities for New Domain and User Creation in Nuxeo code base. But at time of debugging I am not able to find the proper classes or flow of the code. So, can anyone tell me the REST code flow or the java class names. Then I can do it by my self.

Thanks in Advance..

Upvotes: 0

Views: 393

Answers (1)

Julien Carsique
Julien Carsique

Reputation: 3995

Main REST API code lives in https://github.com/nuxeo/nuxeo/tree/master/nuxeo-features/rest-api

I have to change some REST API functionalities for New Domain and User Creation in Nuxeo code base

This is not the way you are supposed to work with Nuxeo. You must not edit the Nuxeo code base but contribute some custom code with your own "bundles" and "extension points". Have you read the Nuxeo Developer Documentation?

You should give a look at NXDOC/How+to+Contribute+to+an+Extension and NXDOC/REST+API.

Upvotes: 1

Related Questions