Skip to content

Commit 5b4bef2

Browse files
committed
fix abc error for solana auth backend
1 parent 50e1e5f commit 5b4bef2

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aws_packages"
3-
version = "0.0.19"
3+
version = "0.0.20"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

aws_packages/auth/solana/auth_backend.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ def get_access_token(self, user: User) -> str:
3232
token = AccessToken()
3333
return token.get_access_token(user)
3434

35+
def get_refresh_token(self, user: User, token: str) -> str:
36+
"""Get the refresh token for the given user"""
37+
raise NotImplementedError("get_refresh_token is not implemented")
38+
3539

3640
solana_auth_backend = SolanaAuthBackend(
3741
url="https://ic0.app",

0 commit comments

Comments
 (0)