mirror of
				https://github.com/filebrowser/filebrowser.git
				synced 2025-11-04 03:12:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			654 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			654 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const name = window.FileBrowser.Name || 'File Browser'
 | 
						|
const disableExternal = window.FileBrowser.DisableExternal
 | 
						|
const baseURL = window.FileBrowser.BaseURL
 | 
						|
const staticURL = window.FileBrowser.StaticURL
 | 
						|
const recaptcha = window.FileBrowser.ReCaptcha
 | 
						|
const recaptchaKey = window.FileBrowser.ReCaptchaKey
 | 
						|
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,
 | 
						|
  disableExternal,
 | 
						|
  baseURL,
 | 
						|
  logoURL,
 | 
						|
  recaptcha,
 | 
						|
  recaptchaKey,
 | 
						|
  signup,
 | 
						|
  version,
 | 
						|
  noAuth,
 | 
						|
  loginPage
 | 
						|
}
 |