Skip to content

Commit

Permalink
Change the method name, cut down on the build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
elffjs committed Apr 4, 2023
1 parent 6f0570e commit 27c769e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dimo-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
uses: docker/build-push-action@v2
with:
context: .
platforms: linux/amd64,linux/arm/v7,linux/arm64
platforms: linux/amd64
push: ${{ github.event_name == 'push' }}
tags: ${{ steps.tags.outputs.tags }}
build-args: |
Expand Down
2 changes: 1 addition & 1 deletion server/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ func (d dexAPI) RevokeRefresh(ctx context.Context, req *api.RevokeRefreshReq) (*
return &api.RevokeRefreshResp{}, nil
}

func (d dexAPI) GetCustomToken(ctx context.Context, req *api.SignTokenReq) (*api.SignTokenResp, error) {
func (d dexAPI) SignToken(ctx context.Context, req *api.SignTokenReq) (*api.SignTokenResp, error) {
issuedAt := d.serverConfig.Now()
expiry := issuedAt.Add(d.serverConfig.IDTokensValidFor)

Expand Down

0 comments on commit 27c769e

Please sign in to comment.