2020405e8b
I'm really sorry this came out as one huge commit, but I'm afraid I can't split this up. Closes https://gitlab.com/commento/commento-ce/issues/9
16 lines
197 B
Go
16 lines
197 B
Go
package main
|
|
|
|
import ()
|
|
|
|
var configuredOauths []string
|
|
|
|
func oauthConfigure() error {
|
|
configuredOauths = []string{}
|
|
|
|
if err := googleOauthConfigure(); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|