Github backend: enable auth renewals

This commit is contained in:
vishalnayak
2015-10-02 13:33:19 -04:00
parent df90e664ad
commit bf017d28d1
5 changed files with 54 additions and 17 deletions

View File

@@ -35,9 +35,11 @@ func Backend() *framework.Backend {
},
Paths: append([]*framework.Path{
pathConfig(),
pathConfig(&b),
pathLogin(&b),
}, b.Map.Paths()...),
AuthRenew: b.pathLoginRenew,
}
return b.Backend