(token string)
| 62 | } |
| 63 | |
| 64 | func tokenAuthentication(token string) (newToken string, err error) { |
| 65 | |
| 66 | if System.ConfigurationWizard == true { |
| 67 | return |
| 68 | } |
| 69 | |
| 70 | newToken, err = authentication.CheckTheValidityOfTheToken(token) |
| 71 | |
| 72 | return |
| 73 | } |
| 74 | |
| 75 | func basicAuth(r *http.Request, level string) (username string, err error) { |
| 76 |
no test coverage detected