summaryrefslogtreecommitdiffstats
path: root/app/plugin_api.go
Commit message (Collapse)AuthorAgeFilesLines
* MM-10254 Add plugin APIs for getting/updating user statuses (#9101)Joram Wilander2018-07-161-0/+26
| | | | | | | | * Add plugin APIs for getting/updating user statuses * Add and update tests * Updates per feedback
* Don't panic if plugin manifest does not have settings (#9086)Joram Wilander2018-07-101-2/+4
|
* Adding ability for plugin system to respect the defaults listed in the ↵Christopher Speller2018-07-091-8/+23
| | | | plugin manifest. (#9066)
* First batch of new plugin api methods (#9022)Daniel Schalla2018-07-061-0/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | update api mocks Generated new hooks ChannelHasJoinedChannel Implementation User Left Team/Channel Hook; User Joined Team Hook Implementation Update RPC Client and Mocks gofmt go tests fix Add Config API Methods codegne Add Channel Has Been Created Hook Fix ChannelHasBeenCreated hook fix missing context param fix duplicate hooks; remove redudandcy
* MM-11029 Adding plugin logging functionality. (#9034)Christopher Speller2018-07-031-4/+20
| | | | | | | | | | | | * Capturing stdout, stderr of plugins in logs. * Cleanup go-plugin debug logs. * Adding logging to plugin API * Generating mocks. * godoc convention
* MM-9674 Add plugin API for publishing custom WebSocket events (#8999)Joram Wilander2018-06-271-0/+9
| | | | | | | | * Add plugin API for publishing custom WebSocket events * Add clearer payload comment * Update comment
* MM-10702 Moving plugins to use hashicorp go-plugin. (#8978)Christopher Speller2018-06-251-133/+13
| | | | | | * Moving plugins to use hashicorp go-plugin. * Tweaks from feedback.
* MM-10412: Adds deleteBy prop to posts. (#8896)Martin Kraft2018-06-011-1/+1
|
* MM-8678: add CUD support for channel members via plugins (#8565)Jesse Hallam2018-04-061-0/+25
| | | | | | | | | | | | * add CUD support for channel members via plugins This effectively exposes AddChannelMember, UpdateChannelMemberRoles, UpdateChannelMemberNotifyProps and LeaveChannel via the plugin API. It also modifies the semantics of AddChannelMember to explicitly allow for an empty user requestor, left as such for now via the plugin API. * change the signature of AddChannelMember to accept a channel id instead of a channel
* Add plugin slash command support (#7941)Chris2017-12-081-0/+9
| | | | | | | | * add plugin slash command support * remove unused string * rebase
* Add GetChannelMember method to plugin API (#7930)Joram Wilander2017-12-051-0/+4
|
* PLT-8131 (part2) Add plugin key value store support (#7902)Joram Wilander2017-11-271-0/+260
* Add plugin key value store support * Add localization strings * Updates per feedback