summaryrefslogtreecommitdiffstats
path: root/model
Commit message (Collapse)AuthorAgeFilesLines
* implement GET /commands (#5865)Carlos Tadeu Panato Junior2017-04-031-0/+11
|
* PLT-5750 Add sequence number to websocket connections and events (#5907)Joram Wilander2017-04-011-37/+8
| | | | | | | | * Add sequence number to websocket connections and events * Copy pointer instead of pass by value and use int64 over uint64 * Add more logging to missed events
* APIv4 POST /posts/{post_id/pin & unpin (#5906)Saturnino Abril2017-03-311-0/+20
| | | | | | * APIv4 get /posts/{post_id}/pin & unpin * remove PinnedPost from api test helper
* Implement PUT /channels/{channel_id}/members/{user_id}/notify_props for ↵Joram Wilander2017-03-311-0/+10
| | | | APIv4 (#5901)
* PLT-6090 adding ability to read license file from disk (#5895)Corey Hulen2017-03-311-0/+5
| | | | | | | | * PLT-6090 adding ability to read license file from disk * Fixing unit test that fails only sometimes * Fixing test that fails randomly
* Implement POST /users/status/ids for apiv4 (#5894)Carlos Tadeu Panato Junior2017-03-303-2/+78
|
* PLT-2713 Added ability for admins to list users not in any team (#5844)Harrison Healey2017-03-292-0/+18
| | | | | | * PLT-2713 Added ability for admins to list users not in any team * Updated style of unit test
* PLT-6083: API to get users not in a specific team. (#5888)George Goldberg2017-03-291-0/+11
|
* APIv4 get /channels/{channel_id}/pinned (#5893)Saturnino Abril2017-03-291-0/+10
|
* PLT-6057: Fix empty search results with in/from. (#5892)George Goldberg2017-03-291-1/+1
| | | | When search query was empty but in/from was set, search results didn't include posts containing hashtags.
* APIv4 put /posts/{post_id}/patch (#5883)Saturnino Abril2017-03-292-0/+60
| | | | | | * APIv4 put /posts/{post_id}/patch * Add props and edit permission
* Remove API endpoints being deprecated in 3.8 (#5880)Joram Wilander2017-03-281-43/+0
|
* Move WebSocket API to it's own package and add websocket v4 endpoint (#5881)Joram Wilander2017-03-281-2/+29
|
* Implement some MFA endpoints for APIv4 (#5864)Joram Wilander2017-03-273-0/+83
|
* Implement client config/license endpoints for APIv4 (#5867)Joram Wilander2017-03-271-0/+27
|
* Implement PUT /users/sessions/device endpoint for APIv4 (#5866)Joram Wilander2017-03-271-0/+11
|
* PLT-5904 (Server): Config flag for SMTP Cert Check. (#5857)George Goldberg2017-03-271-21/+27
|
* APIv4 post /channels/ids (#5845)Saturnino Abril2017-03-271-3/+13
| | | | | | * APIv4 post /channels/ids * updated enpoint as /teams/{team_id}/channels/ids
* PLT-6063: AddUserToTeam permission depends on policy. (#5869)George Goldberg2017-03-261-1/+1
| | | Uses same policy setting as InviteUserToTeam.
* Implement some team endpoints for APIv4 (#5870)Joram Wilander2017-03-251-0/+20
| | | | | | * Implement GET /users/{user_id}/teams/members endpoint for APIv4 * Implement DELETE /teams/{team_id}/members/{user_id} endpoint for APIv4
* Add query parameters to get posts v4 endpoint (#5858)Joram Wilander2017-03-241-0/+33
| | | | | | * Add since query paremeter to get posts v4 endpoint * Add query paremeters for before/after to get posts v4 endpoint
* Implement some channel endpoints for APIv4 (#5846)Joram Wilander2017-03-243-1/+109
| | | | | | | | | | * Add v4 endpoint for getting the channels on a team for a user * Implement PUT /channels/{channel_id}/patch endpoint for APIv4 * Implement POST /teams/{team_id}/channels/search endpoint for APIv4 * Update permission check
* Implement POST /users/email/verify/send endpoint for APIv4 (#5825)Joram Wilander2017-03-241-3/+16
|
* [APIV4] GET /users/{user_id}/status - user status endpoint for apiV4 (#5824)Carlos Tadeu Panato Junior2017-03-242-1/+17
|
* APIv4 put /teams/{team_id}/patch (#5860)Saturnino Abril2017-03-242-0/+60
|
* Endpoint for APIv4 POST /teams/{team_id}/members (#5804)Saturnino Abril2017-03-241-0/+22
|
* implement POST /commands for apiv4 (#5849)Carlos Tadeu Panato Junior2017-03-231-0/+16
|
* Merge branch 'release-3.7'George Goldberg2017-03-232-2/+3
|\
| * PLT-5943 Reduce minimum username length (#5798)Joram Wilander2017-03-172-2/+3
| |
* | add implementation for endpoint DELETE outgoing webhook for apiv4 (#5828)Carlos Tadeu Panato Junior2017-03-231-0/+10
| |
* | add implementation to get outgoing webhook for apiv4 (#5827)Carlos Tadeu Panato Junior2017-03-231-0/+10
| |
* | Implement POST /users/search endpoint for APIv4 (#5822)Joram Wilander2017-03-232-0/+11
| | | | | | | | | | | | | | | | | | | | * Implement POST /users/search endpoint for APIv4 * PLT-2713 Added store functions for searching users that don't have a team * PLT-2713 Added 'without_team' option when searching users * PLT-2713 Added 'without_team' option when searching users (v4)
* | Update channel permissions for v4 endpoints (#5829)Joram Wilander2017-03-221-0/+9
| | | | | | | | | | | | | | | | * Fix join channel permission for v4 endpoint * Allow regular users to get public channels they are not in * Fix unit test
* | Add ability to use 'me' in place of user id for APIv4 (#5826)Joram Wilander2017-03-212-0/+11
| |
* | Implement GET /audits endpoint for APIv4 (#5779)Joram Wilander2017-03-211-2/+15
| | | | | | | | | | | | * Implement GET /audits endpoint for APIv4 * Fix log unit test
* | implement PUT /hooks/outgoing/{hook_id} - update outgoing hook (#5793)Carlos Tadeu Panato Junior2017-03-211-0/+10
| |
* | [APIV4] POST /hooks/outgoing/{hook_id}/regen_token - regentoken endpoint ↵Carlos Tadeu Panato Junior2017-03-201-0/+14
| | | | | | | | for apiV4 (#5783)
* | Endpoint for APIv4 POST /channels/{channel_id}/members (#5775)Saturnino Abril2017-03-201-0/+11
| |
* | Add updateConfig endpoint for apiV4 (#5706)Carlos Tadeu Panato Junior2017-03-202-1/+12
| |
* | Merge branch 'release-3.7' into master.George Goldberg2017-03-175-57/+144
|\|
| * PLT-5800 Cleaned up duplicated code for adding slack attachments to posts ↵Harrison Healey2017-03-101-1/+2
| | | | | | | | (#5711)
| * Added additional validation for slack attachment format on server (#5680)Harrison Healey2017-03-085-57/+143
| |
* | Implement GET /logs endpoint for APIv4 (#5778)Joram Wilander2017-03-161-0/+13
| |
* | Implement some channel endpoints for APIv4 (#5767)Joram Wilander2017-03-163-0/+66
| |
* | Implement update IncomingHook for apiV4 (#5762)Carlos Tadeu Panato Junior2017-03-151-0/+11
| |
* | [APIV4] POST /caches/invalidate - endpoint for apiV4 (#5756)Carlos Tadeu Panato Junior2017-03-141-0/+13
| |
* | Implement brand image endpoints for APIv4 (#5733)Joram Wilander2017-03-141-0/+50
| | | | | | | | | | | | * Implement brand image endpoints for APIv4 * Fix unit test
* | Add implementation for POST /config/reload apiV4 - Reload Configuration (#5713)Carlos Tadeu Panato Junior2017-03-141-0/+10
| |
* | Implement admin LDAP endpoints for APIv4 (#5720)Joram Wilander2017-03-141-0/+27
| |
* | APIv4 DELETE channels/{channel_id} (#5723)Saturnino Abril2017-03-141-0/+10
| |