summaryrefslogtreecommitdiffstats
path: root/app
Commit message (Collapse)AuthorAgeFilesLines
* Refactor switching login type code into app layer and add v4 endpoint (#6000)Joram Wilander2017-04-103-15/+256
| | | | | | * Refactor switching login type code into app layer and add v4 endpoint * Fix unit test
* APIv4 PUT /commands/{command_id} (#5999)Saturnino Abril2017-04-071-0/+1
| | | | | | * APIv4 PUT /commands/{command_id} * update client parameter and api4 test
* implement GET /emoji for apiV4 (#6007)Carlos Tadeu Panato Junior2017-04-071-0/+8
|
* implement POST /emoji for apiV4 (#5868)Carlos Tadeu Panato Junior2017-04-061-0/+156
|
* APIv4 GET /users/{user_id}/posts/flagged (#5984)Saturnino Abril2017-04-051-0/+8
| | | | | | * APIv4 GET /users/{user_id}/posts/flagged * change permission check
* Fix blanking out of FileIds and backwards compatability issue with v3 (#5950)Joram Wilander2017-04-041-18/+15
|
* Fixing race conditions in the code base (#5966)Corey Hulen2017-04-042-12/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Adding initial race detector * Remove setting of config twice * Fixing config file watch and config reload on license save * Fixing config file watch and config reload on license save * Fixing build error * Fixing locking issue * Fixing makefile * Fixing race in config * Fixing race in status unit test * Adding EE race tests * Fixing race in cluster info * Removing code that's isn't needed * Fixing some more races * Fixing govet issue
* PLT-6198: Use added to channel system message on default channels. (#5969)George Goldberg2017-04-047-22/+43
| | | | Use a different sytem message when a user was added to a default channel by someone else than when they joined themselves.
* PLT-6115 adding unit tests for licensing (#5916)Corey Hulen2017-04-041-0/+37
| | | | | | | | * Adding test to license sql store * PLT-6115 adding unit tests for licensing * Removing unused test
* PLT-5900 Removed automatic configuration of SiteURL (#5952)Harrison Healey2017-04-0418-133/+131
| | | | | | | | | | | | | | | | * Revert "PLT-5765 Passed SiteURL to SendNotifications (#5705)" This reverts commit a8e68bd8905972ae59de90fa33d5b3e3c274dc47. * Removed automatic configuration of SiteURL * Reverted unintentional config changes * Updated help text * Added link to docs in Site URL warning * Fixed merge conflict
* PLT-6196: Websocket message when added to a team. (#5968)George Goldberg2017-04-041-3/+15
|
* Fixing config file watch and config reload on license save (#5954)Corey Hulen2017-04-042-0/+5
| | | | | | | | | | * Fixing config file watch and config reload on license save * Fixing config file watch and config reload on license save * Fixing build error * Fixing locking issue
* PLT-6169: Batch add users to teams. (#5953)George Goldberg2017-04-031-0/+18
|
* Add more OAuth unit tests (#5946)enahum2017-04-031-0/+44
|
* APIv4 DELETE /teams/{team_id} (#5937)Saturnino Abril2017-04-031-0/+14
|
* APIv4 post /teams/search (#5931)Saturnino Abril2017-04-031-0/+16
|
* PLT-6162: Search for users not in a given team. (#5943)George Goldberg2017-04-031-0/+16
|
* implement GET /commands (#5865)Carlos Tadeu Panato Junior2017-04-031-1/+32
|
* Creating unit tests for diagnostics (#5932)Christopher Speller2017-04-032-2/+155
|
* PLT-5750 Add sequence number to websocket connections and events (#5907)Joram Wilander2017-04-013-6/+13
| | | | | | | | * 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
* PLT-5483 Fix bug where flagged posts endpoint returned posts on other teams ↵Joram Wilander2017-03-311-0/+8
| | | | | | | | (#5765) * Fix bug where flagged posts endpoint returned posts on other teams * Include flagged posts from DMs/GMs
* PLT-6090 adding ability to read license file from disk (#5895)Corey Hulen2017-03-311-11/+31
| | | | | | | | * PLT-6090 adding ability to read license file from disk * Fixing unit test that fails only sometimes * Fixing test that fails randomly
* fix typo and missing messages (#5902)Yusuke Nemoto2017-03-301-1/+1
|
* Implement POST /users/status/ids for apiv4 (#5894)Carlos Tadeu Panato Junior2017-03-301-0/+1
|
* PLT-2713 Added ability for admins to list users not in any team (#5844)Harrison Healey2017-03-291-0/+21
| | | | | | * 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/+25
|
* PLT 6125 Allow system admins to create users on closed servers (#5908)prixone2017-03-291-0/+13
| | | | | | | | | | | | | | * Update user.go Added method to create user accounts using a privileged system_admin account * Update user.go Added respective method to handle the the APIv4 call to create users with privileged account(system_admin) by passing server restrictions of EnableUserCreation and/or EnableOpenServer set to false. * Update user_test.go Added test case
* APIv4 get /channels/{channel_id}/pinned (#5893)Saturnino Abril2017-03-291-0/+8
|
* APIv4 put /posts/{post_id}/patch (#5883)Saturnino Abril2017-03-291-4/+31
| | | | | | * APIv4 put /posts/{post_id}/patch * Add props and edit permission
* Implement some MFA endpoints for APIv4 (#5864)Joram Wilander2017-03-271-0/+22
|
* APIv4 post /channels/ids (#5845)Saturnino Abril2017-03-271-0/+8
| | | | | | * APIv4 post /channels/ids * updated enpoint as /teams/{team_id}/channels/ids
* Add query parameters to get posts v4 endpoint (#5858)Joram Wilander2017-03-241-0/+16
| | | | | | * 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-241-0/+5
| | | | | | | | | | * 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
* [APIV4] GET /users/{user_id}/status - user status endpoint for apiV4 (#5824)Carlos Tadeu Panato Junior2017-03-241-0/+53
|
* APIv4 put /teams/{team_id}/patch (#5860)Saturnino Abril2017-03-241-3/+27
|
* Endpoint for APIv4 POST /teams/{team_id}/members (#5804)Saturnino Abril2017-03-241-0/+42
|
* Merge branch 'release-3.7'George Goldberg2017-03-232-1/+5
|\
| * PLT-5905 Fix saml certificates for 3.7 (#5843)enahum2017-03-221-1/+14
| |
| * Fix policy application in team edition. (#5771)George Goldberg2017-03-152-1/+5
| |
* | Implement POST /users/search endpoint for APIv4 (#5822)Joram Wilander2017-03-231-0/+26
| | | | | | | | | | | | | | | | | | | | * 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)
* | PLT-5905 Fix saml certificates (#5803)enahum2017-03-221-1/+14
| |
* | PLT-5872: Remove Security Category from Security Alerts. (#5835)George Goldberg2017-03-221-3/+0
| | | | | | It wasn't actually providing any information, just `c=d` every time.
* | Fix compile error on master (#5813)Joram Wilander2017-03-201-2/+2
| |
* | Add http_proxy support for http client (#5571)Josta Yee2017-03-201-5/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - if 'http_proxy' environment variable is set, respect it when creating http client - otherwise initialize a http client with timeout settings Add ogjson to cache even when it fails in this way we can prevent from requesting unparsable urls repeatedly Extend expire time of cached link preview data to a week There's no need to invalidate cache and send request again frequently Revert timeout Revert cache_expire_time
* | Endpoint for APIv4 POST /channels/{channel_id}/members (#5775)Saturnino Abril2017-03-201-0/+25
| |
* | Merge branch 'release-3.7' into master.George Goldberg2017-03-1717-206/+115
|\|
| * Fix permalink in email for DMs/GMs (#5751)Joram Wilander2017-03-131-2/+1
| |
| * PLT-5800 Cleaned up duplicated code for adding slack attachments to posts ↵Harrison Healey2017-03-103-90/+17
| | | | | | | | (#5711)
| * PLT-5765 Passed SiteURL to SendNotifications (#5705)Harrison Healey2017-03-1013-78/+80
| |
| * Fix GMs showing up on refresh after being hidden (#5702)Joram Wilander2017-03-091-1/+1
| |