mirror of https://github.com/mastodon/mastodon
Fix what was intended as a comment being interpreted as strings (#31398)
This commit is contained in:
parent
862e793b45
commit
2ed13071ef
|
@ -5,6 +5,7 @@ class NotifyService < BaseService
|
||||||
|
|
||||||
MAXIMUM_GROUP_SPAN_HOURS = 12
|
MAXIMUM_GROUP_SPAN_HOURS = 12
|
||||||
|
|
||||||
|
# TODO: the severed_relationships type probably warrants email notifications
|
||||||
NON_EMAIL_TYPES = %i(
|
NON_EMAIL_TYPES = %i(
|
||||||
admin.report
|
admin.report
|
||||||
admin.sign_up
|
admin.sign_up
|
||||||
|
@ -12,7 +13,6 @@ class NotifyService < BaseService
|
||||||
poll
|
poll
|
||||||
status
|
status
|
||||||
moderation_warning
|
moderation_warning
|
||||||
# TODO: this probably warrants an email notification
|
|
||||||
severed_relationships
|
severed_relationships
|
||||||
).freeze
|
).freeze
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue