| 8 | ) |
| 9 | |
| 10 | func (p *plugin) upstreamApis() []pm3.Api { |
| 11 | return []pm3.Api{ |
| 12 | pm3.CreateApiWidthDoc(http.MethodGet, "/api/v1/service/upstream", []string{"context", "query:service"}, []string{"upstream"}, p.upstreamController.Get, access.SystemWorkspaceServiceViewAll, access.TeamServiceUpstreamView), |
| 13 | pm3.CreateApiWidthDoc(http.MethodPut, "/api/v1/service/upstream", []string{"context", "query:service", "body"}, []string{"upstream"}, p.upstreamController.Save, access.SystemWorkspaceServiceManagerAll, access.TeamServiceUpstreamManager), |
| 14 | } |
| 15 | } |