Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add master_user/master_pw config #139

Merged
merged 1 commit into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion freenit/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.2"
__version__ = "0.3.3"
4 changes: 4 additions & 0 deletions freenit/base_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ def __init__(
from_addr="[email protected]",
register_subject="[Freenit] User Registration",
register_message=register_message,
master_user="[email protected]",
master_pw="Sekrit",
) -> None:
self.server = server
self.user = user
Expand All @@ -47,6 +49,8 @@ def __init__(
self.from_addr = from_addr
self.register_subject = register_subject
self.register_message = register_message
self.master_user = master_user
self.master_pw = master_pw


class LDAP:
Expand Down
Loading