示例#1
0
func (app *App) CanPerformFirstRun(userInterface ui.UserInterface) bool {
	if caravel.IsSecureURL(app.bootDescriptor.GetDeclaredBaseURL()) {
		return userInterface.AskForSecureFirstRun(app.bootDescriptor)
	}

	return userInterface.AskForUntrustedFirstRun(app.bootDescriptor)
}