mirror of
https://git.pleroma.social/pleroma/relay.git
synced 2024-11-09 18:08:00 +00:00
authreqs: add get_irc_bot(), utter hackjob but works for now
This commit is contained in:
parent
0742ff20b0
commit
489a01fc9e
|
@ -43,6 +43,7 @@ def new_auth_req(irc_nickname, irc_account):
|
|||
return authid
|
||||
|
||||
|
||||
# XXX - utter hackjob
|
||||
def set_irc_bot(bot):
|
||||
global IRC_BOT
|
||||
|
||||
|
@ -50,6 +51,12 @@ def set_irc_bot(bot):
|
|||
logging.debug("SET IRC BOT TO: %r", bot)
|
||||
|
||||
|
||||
def get_irc_bot():
|
||||
global IRC_BOT
|
||||
|
||||
return IRC_BOT
|
||||
|
||||
|
||||
def check_auth(account):
|
||||
return account in DATABASE["auths"]
|
||||
|
||||
|
|
Loading…
Reference in a new issue