wip: add todos

This commit is contained in:
Trong Huu Nguyen
2022-07-08 13:29:37 +02:00
parent 42938ee8b3
commit 5bfb80b934
3 changed files with 7 additions and 0 deletions

View File

@@ -5,17 +5,21 @@ type LoginCallback struct {
}
func (in LoginCallback) IdentityProviderError() (bool, error) {
// TODO
panic("not implemented")
}
func (in LoginCallback) ValidateRequest() error {
// TODO
panic("not implemented")
}
func (in LoginCallback) RedeemCode() error {
// TODO
panic("not implemented")
}
func (in LoginCallback) ParseAndValidateTokens() error {
// TODO
panic("not implemented")
}

View File

@@ -7,9 +7,11 @@ type Logout struct {
}
func (in Logout) URL() string {
// TODO
panic("not implemented")
}
func (in Logout) Cookie() openid.LogoutCookie {
// TODO
panic("not implemented")
}

View File

@@ -5,5 +5,6 @@ type LogoutCallback struct {
}
func (in LogoutCallback) ValidateRequest() (bool, error) {
// TODO
panic("not implemented")
}