summaryrefslogtreecommitdiffstats
path: root/app
Commit message (Collapse)AuthorAgeFilesLines
* PLT-5308 Caching layer part 2 (#6973)Christopher Speller2017-07-313-26/+0
| | | | | | | | | | | | * Adding Reaction store cache layer example * Implementing reaction store in new caching system. * Redis for reaction store * Adding redis library * Adding invalidation for DeleteAllWithEmojiName and other minor enhancements
* Don't send last view message for null channels (#7051)Corey Hulen2017-07-311-1/+1
|
* Fix TestCreateOAuthUser unit test (#7034)Joram Wilander2017-07-281-1/+1
|
* Added websocket event and webapp handler for updating user roles (#6953)Nick Frazier2017-07-271-0/+9
|
* PLT-7040: Fix capitalisation of Elasticsearch in Config. (#7020)George Goldberg2017-07-272-8/+8
|
* PLT-7183: User/Channel NotifyProps Bulk Import. (#7019)George Goldberg2017-07-262-4/+305
|
* PLT-6706: add /code command (#6936)Chris2017-07-242-0/+70
| | | | | | * add /code command * return an error for empty /code message
* [PLT-6708] /purpose [text] slash command: Edit the channel purpose (#6569)Carlos Tadeu Panato Junior2017-07-212-12/+74
| | | | | | | | | | | | | | | | * /purpose [text] slash command: Edit the channel purpose * update command on server side to check for direct or group channels * update stings and block the dialog when is DM or GM * update per review * remove duplicate websocker event and apply the same for /header command * update per review * update
* PLT-7123: Add tutorial, flags and favorites to bulk importer. (#7000)George Goldberg2017-07-212-111/+387
|
* PLT-6596: Elasticsearch interface changes. (#6993)George Goldberg2017-07-211-1/+1
|
* Upgrading server dependancies (#6984)Christopher Speller2017-07-201-4/+7
|
* PLT-6595-Server: Job Management APIs. (#6931)George Goldberg2017-07-202-7/+28
| | | | | | | | * PLT-6595-Server: Job Management APIs. * MANAGE_JOBS Permission * Fix test.
* PLT-6971: Fix Slack Import of non-ascii channel names. (#6969)George Goldberg2017-07-192-11/+19
|
* PLT-6595: API to purge Elasticsearch indexes. (#6971)George Goldberg2017-07-191-0/+13
|
* Merge branch 'release-4.0'Christopher Speller2017-07-184-25/+162
|\
| * PLT-7126 Do not version detect on saml endpoints and remove config reloading ↵Joram Wilander2017-07-181-6/+0
| | | | | | | | | | | | | | | | (#6955) * Do not version detect on saml endpoints and remove config reloading * Update mattermost-redux
| * Only apply never edit policy setting when message changes (#6947)Joram Wilander2017-07-181-7/+7
| |
| * Only apply edit policy setting if message changed (#6930)Joram Wilander2017-07-151-1/+1
| |
| * Tweak WebSocket header-processing (#6929)Chris2017-07-131-3/+2
| | | | | | | | | | | | * fix * consolidate code
| * Minor fixJoramWilander2017-07-122-0/+54
| |
| * Minor fixJoramWilander2017-07-061-11/+100
| |
* | [PLT-6676] Make OutgoingWebhook to fire when post has no text content but ↵Saturnino Abril2017-07-181-50/+56
| | | | | | | | | | | | | | | | only attachment (#6935) * make OutgoingWebhook to fire when post has no text content but only attachment * update per comment and modify payload & test
* | Tweak WebSocket header-processing (#6929)Chris2017-07-131-3/+2
| | | | | | | | | | | | * fix * consolidate code
* | PLT-6659 Fixed upload thumbnails that weren't properly rotated (#6816)Rich Barton2017-07-101-8/+17
| | | | | | | | | | | | | | - Used client-side EXIF data to rotate profile picture thumbnails - Added a small package for correctly translating EXIF orientation into CSS transforms - Instead of displaying the image using FileReader, used URL.createObjectURL because it is faster - For upload thumbnails, the original behavior was scaling the entire original image, without accounting for EXIF rotate. I changed this to use the thumbnail image, which does respect rotation. - The preview image was not available when the upload request returned, because handling the preview image creation was in a goroutine. I used sync.WaitGroup to block until the preview image creation is done.
* | Add optional config parameter to test elasticsearch endpoint. (#6877)George Goldberg2017-07-071-2/+11
| |
* | PLT-6976: Elasticsearch capitalisation and tests. (#6839)George Goldberg2017-07-072-7/+7
| | | | | | | | | | | | | | * Fixes Elasticsearch to have consistent capitalisation everywhere across the code and UI (except the config file unfortunately). * Adds basic unit tests for Elastichsearch. * Adds a Elasticsearch docker image to the Makefile to enable testing the Elasticsearch feature.
* | PLT-6916: Redesign the jobs package and Jobserver. (#6733)George Goldberg2017-07-073-17/+20
|/ | | | | | | | | | | | | | This commit redesigns the jobserver to be based around an architecture of "workers", which carry out jobs of a particular type, and "jobs" which are a unit of work carried by a particular worker. It also introduces "schedulers" which are responsible for scheduling jobs of a particular type automatically (jobs can also be scheduled manually when apropriate). Workers may be run many times, either in instances of the platform binary, or the standalone jobserver binary. In any mattermost cluster, only one instance of platform OR jobserver must run the schedulers. At the moment this is controlled by a config variable, but in future will be controlled through the cluster leader election process.
* [PLT-6969] System console setting for the emoji picker (#6809)Saturnino Abril2017-07-061-0/+1
| | | | | | | | * system console setting for the emoji picker * remove state.emojiPickerEnable * update url to /admin_console/customization/emoji
* PLT-6975 Fixed image thumbnail size being calculated incorrectly (#6855)Harrison Healey2017-07-061-4/+9
|
* Fix some duplicate message IDs in Bulk Importer. (#6850)George Goldberg2017-07-051-2/+2
|
* Return channel member immediately if user is already in channel (#6847)Joram Wilander2017-07-051-0/+8
|
* add /search command (#6741)Chris2017-07-051-0/+42
|
* PLT-6554 Add config setting to control enabling API version 3 (#6835)Joram Wilander2017-07-041-0/+1
| | | | | | | | | | * Add config setting to control enabling API version 3 * Update help text for APIv3 config setting (#6843) * Update configuration_settings.jsx * Update en.json
* PLT-6960 Only update post.EditAt when the message changes (#6840)Harrison Healey2017-07-042-10/+38
|
* Removing unnessisary go routines to fix random test failure. (#6838)Christopher Speller2017-07-041-3/+4
|
* Add paging to the GET /emojis endpoint (#6802)Joram Wilander2017-07-031-2/+2
|
* PLT-6951: Fix channel join slash command. (#6824)George Goldberg2017-07-031-1/+1
| | | | Don't show an ephemeral message when the channel join succeeds. Just redirect to the channel.
* Fix EnablChannelViewedMessages typo (#6822)Jason Blais2017-07-033-4/+4
| | | | | | | | | | | | | | | | * Update config.json * Update config.go * Update config.go * Update channel.go * Update post.go * Update diagnostics.go * Update config.go
* PLT-6955: Add new config fields to diagnostics. (#6791)George Goldberg2017-06-301-45/+63
| | | | | | * PLT-6955: Add new config fields to diagnostics. * Fix review comments.
* PLT-6830 Fixed updating profile image not invalidating cache (#6814)Harrison Healey2017-06-301-1/+3
|
* Add some basic sorting support for GET /users endpoint (#6801)Joram Wilander2017-06-301-2/+31
|
* [PLT-5864] Move teammate name display setting to the System Console (#6681)Saturnino Abril2017-06-304-25/+5
| | | | | | | | | | * move teammate name display setting to the system console * update all the likes of TeammateNameDisplay names * fix gofmt error * rebase and fix conflict
* PLT-6474: Server: Add elasticsearch/test endpoint to API. (#6792)George Goldberg2017-06-291-0/+24
|
* PLT-6610 adding the view channel event as skippable (#6800)Corey Hulen2017-06-291-1/+3
|
* PLT-6610 sending websocket event for last channel viewed (#6787)Corey Hulen2017-06-294-3/+28
|
* PLT-6882 Disable /invite_people when account creation is set to false (#6709)AJ Moon2017-06-291-1/+9
| | | | | | * PLT-6882 Disable /invite_people when account creation is set to false * Disable /invite_people when account creation or email notifications are set to false
* [PLT-6496] Remove System Console and config settings for image height and ↵Saturnino Abril2017-06-293-28/+21
| | | | | | | | | | width (#6688) * remove System Console and config settings for image height and width * add constants and update config.json * updated as per review
* Add /help slash command (#6650)Jaehyun, Park2017-06-291-0/+44
| | | | | | | | | | | | | | | | * Add /help slash command * Fix copyright year * go fmt * Add help command test at api4 * Fix jasonblais's issue * Update test code * Fix unit test issue - keep config unchanged
* [PLT-5639] Show a message when invited addresses are blocked (#6691)Pieter Lexis2017-06-291-7/+26
| | | | | | | | | | | | | | | | * Show a message when invited addresses are blocked When using the "Send Email Invite" functionality. Emails were sent to domains that were not on the `RestrictCreationToDomains` list. This would lead to users getting a message that they can't create an account if they follow the link in the email. This commit will check the email addresses before the mails are sent and warn the user typing them in which ones are blocked. * Add unit test for domain restrictions on invite * Invite Member: Clear serverError on toggle
* [PLT-6707] /header [text] slash command: Edit the channel header (#6566)Carlos Tadeu Panato Junior2017-06-291-0/+73
| | | | | | | | * add /header slash command * update websocket * updater per review