mirror of https://github.com/rancher/ui.git
Missing cancel action for authentication mixin
fixed double quotes Added `SamlAuth` to proxies map so we can use ngrok and saml auth locally
This commit is contained in:
parent
11ea8e36d5
commit
02078b4e42
|
|
@ -16,6 +16,12 @@ export default Mixin.create({
|
|||
|
||||
actions: {
|
||||
|
||||
cancel() {
|
||||
if (this.transitionToRoute) {
|
||||
this.transitionToRoute('security.authentication');
|
||||
}
|
||||
},
|
||||
|
||||
edit() {
|
||||
set(this, 'editing', true);
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{{partial 'saml-config'}}
|
||||
{{partial "saml-config"}}
|
||||
|
|
@ -76,6 +76,7 @@ module.exports = function(app, options) {
|
|||
'Swagger': '/swaggerapi',
|
||||
'Version': '/version',
|
||||
'Apiui': '/api-ui',
|
||||
'SamlAuth': '/v1-saml',
|
||||
}
|
||||
|
||||
app.use('/', function(req, res, next) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue