Mercurial > prosody-modules
comparison mod_auth_oauth_external/mod_auth_oauth_external.lua @ 5730:6592c444e85c
mod_auth_oauth_external: Fix typo
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 25 Nov 2023 01:09:01 +0100 |
parents | 0207fd248480 |
children | 97a9f939d472 |
comparison
equal
deleted
inserted
replaced
5729:79ba1a1a75cc | 5730:6592c444e85c |
---|---|
32 | 32 |
33 local function not_implemented() | 33 local function not_implemented() |
34 return nil, "method not implemented" | 34 return nil, "method not implemented" |
35 end | 35 end |
36 | 36 |
37 -- With proper OAuth 2, most of these should be handled at the atuhorization | 37 -- With proper OAuth 2, most of these should be handled at the authorization |
38 -- server, no there. | 38 -- server, no there. |
39 provider.test_password = not_implemented; | 39 provider.test_password = not_implemented; |
40 provider.get_password = not_implemented; | 40 provider.get_password = not_implemented; |
41 provider.set_password = not_implemented; | 41 provider.set_password = not_implemented; |
42 provider.create_user = not_implemented; | 42 provider.create_user = not_implemented; |