| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import angular from 'angular';
- export class OrgApiKeysCtrl {
- /** @ngInject */
- constructor($scope, $http, backendSrv, navModelSrv) {
- $scope.navModel = navModelSrv.getNav('cfg', 'apikeys', 0);
- $scope.roleTypes = ['Viewer', 'Editor', 'Admin'];
- $scope.token = { role: 'Viewer' };
- $scope.init = () => {
- $scope.getTokens();
- };
- $scope.getTokens = () => {
- backendSrv.get('/api/auth/keys').then(tokens => {
- $scope.tokens = tokens;
- });
- };
- $scope.removeToken = id => {
- backendSrv.delete('/api/auth/keys/' + id).then($scope.getTokens);
- };
- $scope.addToken = () => {
- backendSrv.post('/api/auth/keys', $scope.token).then(result => {
- const modalScope = $scope.$new(true);
- modalScope.key = result.key;
- modalScope.rootPath = window.location.origin + $scope.$root.appSubUrl;
- $scope.appEvent('show-modal', {
- src: 'public/app/features/org/partials/apikeyModal.html',
- scope: modalScope,
- });
- $scope.getTokens();
- });
- };
- $scope.init();
- }
- }
- angular.module('grafana.controllers').controller('OrgApiKeysCtrl', OrgApiKeysCtrl);
|