Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
5d093db4f6 | |||
0b16fcac67 | |||
a0d294da53 | |||
c3f755aede |
@ -34,6 +34,8 @@ steps:
|
|||||||
settings:
|
settings:
|
||||||
webhook:
|
webhook:
|
||||||
from_secret: slack_webhook
|
from_secret: slack_webhook
|
||||||
|
icon_url:
|
||||||
|
from_secret: slack_avatar
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
event:
|
event:
|
||||||
|
14
README.md
14
README.md
@ -1,7 +1,9 @@
|
|||||||
# Simple Login
|
# Simple Login
|
||||||
|
|
||||||
This repo exists to automatically capture any releases of the SaaS edition of SimpleLogin. It checks once a day, and builds the latest one automatically if it is newer than the currentlty built version.
|
[](https://drone.mrmeeb.stream/MrMeeb/simple-login)
|
||||||
|
|
||||||
This exists to simplify deployment of SimpleLogin in a self-hosted capacity, while also allowing the use of the latest version; SimpleLogin do not provide an up-to-date version for this use.
|
This repo exists to automatically capture any releases of the SaaS edition of SimpleLogin. It checks once a day, and builds the latest one automatically if it is newer than the currentlty built version.
|
||||||
|
|
||||||
|
This exists to simplify deployment of SimpleLogin in a self-hosted capacity, while also allowing the use of the latest version; SimpleLogin do not provide an up-to-date version for this use.
|
||||||
|
|
||||||
The image is built for amd64 and arm64 devices.
|
The image is built for amd64 and arm64 devices.
|
@ -620,3 +620,8 @@ class MetricAdmin(SLModelView):
|
|||||||
column_exclude_list = ["created_at", "updated_at", "id"]
|
column_exclude_list = ["created_at", "updated_at", "id"]
|
||||||
|
|
||||||
can_export = True
|
can_export = True
|
||||||
|
|
||||||
|
|
||||||
|
class InvalidMailboxDomainAdmin(SLModelView):
|
||||||
|
can_create = True
|
||||||
|
can_delete = True
|
||||||
|
@ -44,6 +44,7 @@ from app.admin_model import (
|
|||||||
NewsletterUserAdmin,
|
NewsletterUserAdmin,
|
||||||
DailyMetricAdmin,
|
DailyMetricAdmin,
|
||||||
MetricAdmin,
|
MetricAdmin,
|
||||||
|
InvalidMailboxDomainAdmin,
|
||||||
)
|
)
|
||||||
from app.api.base import api_bp
|
from app.api.base import api_bp
|
||||||
from app.auth.base import auth_bp
|
from app.auth.base import auth_bp
|
||||||
@ -105,6 +106,7 @@ from app.models import (
|
|||||||
NewsletterUser,
|
NewsletterUser,
|
||||||
DailyMetric,
|
DailyMetric,
|
||||||
Metric2,
|
Metric2,
|
||||||
|
InvalidMailboxDomain,
|
||||||
)
|
)
|
||||||
from app.monitor.base import monitor_bp
|
from app.monitor.base import monitor_bp
|
||||||
from app.newsletter_utils import send_newsletter_to_user
|
from app.newsletter_utils import send_newsletter_to_user
|
||||||
@ -764,6 +766,7 @@ def init_admin(app):
|
|||||||
admin.add_view(NewsletterUserAdmin(NewsletterUser, Session))
|
admin.add_view(NewsletterUserAdmin(NewsletterUser, Session))
|
||||||
admin.add_view(DailyMetricAdmin(DailyMetric, Session))
|
admin.add_view(DailyMetricAdmin(DailyMetric, Session))
|
||||||
admin.add_view(MetricAdmin(Metric2, Session))
|
admin.add_view(MetricAdmin(Metric2, Session))
|
||||||
|
admin.add_view(InvalidMailboxDomainAdmin(InvalidMailboxDomain, Session))
|
||||||
|
|
||||||
|
|
||||||
def register_custom_commands(app):
|
def register_custom_commands(app):
|
||||||
|
Reference in New Issue
Block a user