Move and rename 'token' to 'access_token' where applicable.

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk
2025-06-18 00:37:54 +00:00
parent 61cbd38284
commit b3a47566ff
5 changed files with 69 additions and 56 deletions

View File

@@ -115,7 +115,7 @@ impl Service {
.map(|info| info.registration)
}
pub async fn find_from_token(&self, token: &str) -> Option<RegistrationInfo> {
pub async fn find_from_access_token(&self, token: &str) -> Option<RegistrationInfo> {
self.read()
.await
.values()