-
Notifications
You must be signed in to change notification settings - Fork 1
Backend Routes
greathmaster edited this page Mar 2, 2020
·
2 revisions
GET /StaticPagesController#root
- GET api/users/ Get all users
- POST api/users/ Sign Up UsersController#create
- PATCH api/users/:id Edit User UsersController#update
- DELETE api/users/:id Delete User UsersContorller#destroy
- POST api/session - Logon/Signin SessionsController#create
- DELETE api/session - Logout SessionsController#destroy
- GET api/channels/ All Channels (in workspace?) ChannelsController#index
- GET api/channels/:id Specific Channel ChannelsController#show
- POST api/channels/ Create Channel ChannelsController#create
- PATCH api/channels/ Edit Channel ChannelsController#update
- DELETE api/channels/ Delete a Channel ChannelsController#destroy