summaryrefslogtreecommitdiffstats
path: root/services
Commit message (Collapse)AuthorAgeFilesLines
* Set a proper HTTP user-agent header (#9482)Andreas Linz2018-10-033-5/+39
| | | | | | | | | | | | | Previously, mattermost-server would always request with the default user-agent of Go's net/http package that is `Go-http-client/1.1` or something similar. This has several disadvantages, one is that the default user-agent made it pretty hard to distinguish mattermost requests from other service requests in a network log for example. Now a user-agent of the form `mattermost-<current-version>` is set in the client. - [x] Added or updated unit tests (required for all new features)
* Move HTTPService and ConfigService into services package (#9422)Harrison Healey2018-09-264-0/+335
| | | | | | | | * Move HTTPService and ConfigService into utils package * Re-add StaticConfigService * Move config and http services into their own packages
* Move file backend to its own service (#9435)Jesús Espino2018-09-209-0/+1797
* Move file backend to its own service * Moving utils/inbucket to mailservice package