CSRF Token Implementation for Plugins (#9192)

deleted test config

fix test config

Dont wipe the session token for plugins

Simplified Tokens; Generate CSRF for other sessions

Remove CSRF from Access Token; Remove Getter/Setter from Context

fix removed setter

remove getcsrf helper from plugin api

enforce csrf only for cookie auth
Этот коммит содержится в:
Daniel Schalla
2018-08-02 00:16:04 +02:00
коммит произвёл Christopher Speller
родитель 90e84d76ef
Коммит 2936dc87d0
10 изменённых файлов: 126 добавлений и 4 удалений

Просмотреть файл

@@ -25,6 +25,9 @@ type API interface {
// UnregisterCommand unregisters a command previously registered via RegisterCommand.
UnregisterCommand(teamId, trigger string) error
// GetSession returns the session object for the Session ID
GetSession(sessionId string) (*model.Session, *model.AppError)
// GetConfig fetches the currently persisted config
GetConfig() *model.Config