| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
* implement get channels endpoints and updated drivers and unittests
* removed channel deletion on tear down, removed manage permission on get channels endpoints, and updated utils to add constant channel length
* added constants for user, team and channel length, updated context to use the model functions
* make sure team name length should be less than the minimum length and revert underscore to team name validity
* changed post test condition from notfound to unauthorized
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Implement POST /posts endpoint for APIv4
* Implement GET /channels/{channel_id}/posts endpoint for APIv4
* Implement GET /posts/{post_id} endpoint for APIv4
* Implement GET /posts/{post_id}/thread endpoint for APIv4
* Skip team get if it's a DM channel in handlePostEvents
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Adding go vet to the api package
* Adding go vet to app package
* Adding go vet to manualtesting package
* Adding go vet to the model package
* Adding go vet to the store dir
* Adding go vet to utils package
* Adding missing dirs with go files
* Fixing up makefile
* Fixing up makefile
* Removing root dir
|
|
|
|
|
|
|
|
|
|
|
|
| |
* added get user by username endpoint
* added get user by username unit test and driver
* changed username length to 22 characters max
* changed Params to UserName to Username
* reorganized get user by username and get user by email formatting in model/client4
|
|
|
|
|
|
|
|
|
|
| |
* Implement GET /channels/{channel_id}/members
* Implement GET /channels/{channel_id}/members/{user_id} endpoint for APIv4
* Implement /users/{user_id}/teams/{team_id}/channels/members endpoint for APIv4
* Fix unit test
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
* Implement GET /teams/{team_id} endpoint for APIv4
* Implement GET /users/{user_id}/teams endpoint for APIv4
* Implement GET /teams/{team_id}/members/{user_id} endpoint for APIv4
|
|
|
|
|
|
|
|
|
|
| |
* added get user by email endpoint for APIv4
* added get user by email endpoint unit test and driver
* removed the appended return of user ids on logout
* Added RequireEmail to validate user email. Also updated the get user by email endpoint and unit test
|
|
|
|
|
|
|
|
| |
* added delete user endpoint
* added unit test for delete user endpoint
* added delete user driver
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
* Implement APIv4 infrastructure
* Update parameter requirement functions per feedback
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Added separate post types for system_join_leave and system_add_remove posts
* Added username prop to channel deleted posts
* Changed slack import to properly generate the new join/leave messages
* Added username prop to channel update posts
* Moved Post(AddTo/RemoveFrom)ChanneMessage into app package
|
|
|
|
|
|
|
| |
This commit provides the first part of the bulk import system.
The CLI command is provided, complete with validation & apply modes. All
the basic properties of Teams and Channels can be imported. Users &
Posts will follow separately in a future commit.
|
|
|
|
|
|
|
|
| |
* Migrate admin functions into app package
* More user function refactoring
* Move post functions into app package
|
|
|
|
|
|
| |
* Move permissions code into app package
* Revert getPosts permission
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Refactor and move session logic into app package
* Refactor email functions into the app package
* Refactor password update into app package
* Migrate user functions to app package
* Move team functions into app package
* Migrate channel functions into app package
* Pass SiteURL through to app functions
* Update based on feedback
|
| |
|
|
|
| |
Completes original patch by David Lu.
|
|
|
|
|
|
|
|
|
|
| |
* Add app package and move logic over from api package
* Change app package functions to return errors
* Move non-api tests into app package
* Fix merge
|
|
|
| |
Implements API reference proposal mattermost-api-reference:#66.
|
|\ |
|
| | |
|
| | |
|
|/ |
|
|
|
|
|
|
| |
* Update schema for version 3.6
* Update version for version 3.6
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
* add itinial tests for GetPostById
update per review
fix lint
* add missing comment
|
|
|
|
|
|
| |
* Add API call to get a user by their email address
* update per review
|
|
|
|
|
|
| |
* Improve performance of /channels/view endpoint
* Fix store unit test
|
|
|
|
| |
Adds permissions for manage/delete public/private channels at the
Channel Admin level.
|
|
|
|
| |
system (#4876)
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
into a single API (#4840)
* Combine updateLastViewedAt, setLastViewedAt and setActiveChannel into a single API
* Remove preference DB writes
|
|
|
|
|
|
|
|
| |
* Fix teams unread
* Moving logic out of the store
* fix unit test
|
|
|
|
|
|
| |
* Server side changes.
* Fix unit tests and default config.
|