fix: login page for no auth/proyx

License: MIT
Signed-off-by: Henrique Dias <hacdias@gmail.com>
pull/739/head
Henrique Dias 2019-02-15 12:56:08 +00:00
parent 6b42781c21
commit 9c3f563f83
2 changed files with 7 additions and 5 deletions

View File

@ -3,17 +3,17 @@ import store from '@/store'
import router from '@/router'
import i18n from '@/i18n'
import Vue from '@/utils/vue'
import { recaptcha, noAuth } from '@/utils/constants'
import { recaptcha, loginPage } from '@/utils/constants'
import { login, validateLogin } from '@/utils/auth'
import App from '@/App'
sync(store, router)
async function start () {
if (noAuth) {
await login('', '', '')
} else {
if (loginPage) {
await validateLogin()
} else {
await login('', '', '')
}
if (recaptcha) {

View File

@ -8,6 +8,7 @@ const signup = window.FileBrowser.Signup
const version = window.FileBrowser.Version
const logoURL = `/${staticURL}/img/logo.svg`
const noAuth = window.FileBrowser.NoAuth
const loginPage = window.FileBrowser.LoginPage
export {
name,
@ -18,5 +19,6 @@ export {
recaptchaKey,
signup,
version,
noAuth
noAuth,
loginPage
}