-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: test fix and better names chore: minors chore: mod tidy and minor refactors chore: pr feedback feat: content length fix feat: refresh tokens wip feat: rotating refresh tokens and refresh token grant endpoint fix: tests fix: tests fix: test db name gen fix: using sha3 hash fix: remove crypto extension fix: test db naming, improved telemetry
- Loading branch information
Showing
17 changed files
with
668 additions
and
292 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package authapi | ||
|
||
import ( | ||
"net/http" | ||
|
||
"github.com/teamkeel/keel/proto" | ||
"github.com/teamkeel/keel/runtime/common" | ||
) | ||
|
||
func RevokeHandler(schema *proto.Schema) common.HandlerFunc { | ||
return func(r *http.Request) common.Response { | ||
return common.Response{ | ||
Status: http.StatusNotImplemented, | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.