Model: NeuronModel
Source model: src/models/neuron.go
Controller: src/controllers/neuron.go
Endpoint: /neurons
Small Description
Enpoint | Method | Description |
---|---|---|
/ | GET | Get all neuros |
/{neuronKey:string} | GET | Get specific neuron with key |
/{neuronKey:string}/actions | GET | Get all action from specific neuron key |
/ | POST | Create new neuron |
/{neuronKey:string}/actions | POST | Create or add new action to neuron |
Model: UserModel
Source model: src/models/user.go
Controller: src/controllers/auth.go
Endpoint: /auth
Small Description
Enpoint | Method | Description |
---|---|---|
/login | POST | Login user in system |
Model: UserModel
Source model: src/models/user.go
Controller: src/controllers/user.go
Endpoint: /users
Small Description
Enpoint | Method | Description |
---|---|---|
/{userKey:string} | GET | Get specific user with key |
/ | GET | Get all user |
/ | POST | Create new user |