mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 08:05:43 -06:00
52 lines
1.3 KiB
TypeScript
52 lines
1.3 KiB
TypeScript
///<reference path="../../headers/common.d.ts" />
|
|
|
|
import config from 'app/core/config';
|
|
import coreModule from '../core_module';
|
|
|
|
export class SignUpCtrl {
|
|
|
|
/** @ngInject */
|
|
constructor(
|
|
private $scope: any,
|
|
private $location: any,
|
|
private contextSrv: any,
|
|
private backendSrv: any) {
|
|
|
|
contextSrv.sidemenu = false;
|
|
$scope.ctrl = this;
|
|
|
|
$scope.formModel = {};
|
|
|
|
var params = $location.search();
|
|
$scope.formModel.orgName = params.email;
|
|
$scope.formModel.email = params.email;
|
|
$scope.formModel.username = params.email;
|
|
$scope.formModel.code = params.code;
|
|
|
|
$scope.verifyEmailEnabled = false;
|
|
$scope.autoAssignOrg = false;
|
|
|
|
backendSrv.get('/api/user/signup/options').then(options => {
|
|
$scope.verifyEmailEnabled = options.verifyEmailEnabled;
|
|
$scope.autoAssignOrg = options.autoAssignOrg;
|
|
});
|
|
}
|
|
|
|
submit () {
|
|
if (!this.$scope.signUpForm.$valid) {
|
|
return;
|
|
}
|
|
|
|
this.backendSrv.post('/api/user/signup/step2', this.$scope.formModel).then(rsp => {
|
|
if (rsp.code === 'redirect-to-select-org') {
|
|
window.location.href = config.appSubUrl + '/profile/select-org?signup=1';
|
|
} else {
|
|
window.location.href = config.appSubUrl + '/';
|
|
}
|
|
});
|
|
};
|
|
}
|
|
|
|
coreModule.controller('SignUpCtrl', SignUpCtrl);
|
|
|