1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-18 07:52:23 +01:00

(bug) notification type missing

This commit is contained in:
Du Peng 2023-06-15 19:08:17 +02:00
parent 4fdbd4fcf1
commit 91fa1fcd85
2 changed files with 82 additions and 25 deletions

View File

@ -2,6 +2,7 @@
- Fix a bug: OpenAPI accounting gateway_object_id missing error - Fix a bug: OpenAPI accounting gateway_object_id missing error
- Fix a bug: unable to modify the price of prepaid pack - Fix a bug: unable to modify the price of prepaid pack
- Fix a bug: notification type missing
## v6.0.6 2023 May 4 ## v6.0.6 2023 May 4

View File

@ -1,33 +1,89 @@
# frozen_string_literal: true # frozen_string_literal: true
unless NotificationType.find_by(name: 'notify_member_training_authorization_expired') NOTIFICATIONS_TYPES = [
NotificationType.create!( { name: 'notify_admin_when_project_published', category: 'projects', is_configurable: true },
name: 'notify_member_training_authorization_expired', { name: 'notify_project_collaborator_to_valid', category: 'projects', is_configurable: false },
category: 'trainings', { name: 'notify_project_author_when_collaborator_valid', category: 'projects', is_configurable: true },
is_configurable: false { name: 'notify_user_training_valid', category: 'trainings', is_configurable: false },
) { name: 'notify_member_subscribed_plan', category: 'subscriptions', is_configurable: false },
end { name: 'notify_member_create_reservation', category: 'agenda', is_configurable: false },
{ name: 'notify_member_subscribed_plan_is_changed', category: 'deprecated', is_configurable: false },
{ name: 'notify_admin_member_create_reservation', category: 'agenda', is_configurable: true },
{ name: 'notify_member_slot_is_modified', category: 'agenda', is_configurable: false },
{ name: 'notify_admin_slot_is_modified', category: 'agenda', is_configurable: true },
unless NotificationType.find_by(name: 'notify_member_training_invalidated') { name: 'notify_admin_when_user_is_created', category: 'users_accounts', is_configurable: true },
NotificationType.create!( { name: 'notify_admin_subscribed_plan', category: 'subscriptions', is_configurable: true },
name: 'notify_member_training_invalidated', { name: 'notify_user_when_invoice_ready', category: 'payments', is_configurable: true },
category: 'trainings', { name: 'notify_member_subscription_will_expire_in_7_days', category: 'subscriptions', is_configurable: false },
is_configurable: false { name: 'notify_member_subscription_is_expired', category: 'subscriptions', is_configurable: false },
) { name: 'notify_admin_subscription_will_expire_in_7_days', category: 'subscriptions', is_configurable: true },
end { name: 'notify_admin_subscription_is_expired', category: 'subscriptions', is_configurable: true },
{ name: 'notify_admin_subscription_canceled', category: 'subscriptions', is_configurable: true },
{ name: 'notify_member_subscription_canceled', category: 'subscriptions', is_configurable: false },
{ name: 'notify_user_when_avoir_ready', category: 'wallet', is_configurable: false },
unless NotificationType.find_by(name: 'notify_admin_order_is_paid') { name: 'notify_member_slot_is_canceled', category: 'agenda', is_configurable: false },
NotificationType.create!( { name: 'notify_admin_slot_is_canceled', category: 'agenda', is_configurable: true },
name: 'notify_admin_order_is_paid', { name: 'notify_partner_subscribed_plan', category: 'subscriptions', is_configurable: false },
category: 'shop', { name: 'notify_member_subscription_extended', category: 'subscriptions', is_configurable: false },
is_configurable: true { name: 'notify_admin_subscription_extended', category: 'subscriptions', is_configurable: true },
) { name: 'notify_admin_user_group_changed', category: 'users_accounts', is_configurable: true },
end { name: 'notify_user_user_group_changed', category: 'users_accounts', is_configurable: false },
{ name: 'notify_admin_when_user_is_imported', category: 'users_accounts', is_configurable: true },
{ name: 'notify_user_profile_complete', category: 'users_accounts', is_configurable: false },
{ name: 'notify_user_auth_migration', category: 'user', is_configurable: false },
{ name: 'notify_admin_user_merged', category: 'users_accounts', is_configurable: true },
{ name: 'notify_admin_profile_complete', category: 'users_accounts', is_configurable: true },
{ name: 'notify_admin_abuse_reported', category: 'projects', is_configurable: true },
{ name: 'notify_admin_invoicing_changed', category: 'deprecated', is_configurable: false },
{ name: 'notify_user_wallet_is_credited', category: 'wallet', is_configurable: false },
{ name: 'notify_admin_user_wallet_is_credited', category: 'wallet', is_configurable: true },
{ name: 'notify_admin_export_complete', category: 'exports', is_configurable: false },
{ name: 'notify_member_about_coupon', category: 'agenda', is_configurable: false },
{ name: 'notify_member_reservation_reminder', category: 'agenda', is_configurable: false },
{ name: 'notify_admin_free_disk_space', category: 'app_management', is_configurable: false },
{ name: 'notify_admin_close_period_reminder', category: 'accountings', is_configurable: true },
{ name: 'notify_admin_archive_complete', category: 'accountings', is_configurable: true },
{ name: 'notify_privacy_policy_changed', category: 'app_management', is_configurable: false },
{ name: 'notify_admin_import_complete', category: 'app_management', is_configurable: false },
{ name: 'notify_admin_refund_created', category: 'wallet', is_configurable: true },
{ name: 'notify_admins_role_update', category: 'users_accounts', is_configurable: true },
{ name: 'notify_user_role_update', category: 'users_accounts', is_configurable: false },
{ name: 'notify_admin_objects_stripe_sync', category: 'payments', is_configurable: false },
{ name: 'notify_user_when_payment_schedule_ready', category: 'payments', is_configurable: false },
{ name: 'notify_admin_payment_schedule_failed', category: 'payments', is_configurable: true },
{ name: 'notify_member_payment_schedule_failed', category: 'payments', is_configurable: false },
{ name: 'notify_admin_payment_schedule_check_deadline', category: 'payments', is_configurable: true },
{ name: 'notify_admin_payment_schedule_transfer_deadline', category: 'payments', is_configurable: true },
{ name: 'notify_admin_payment_schedule_error', category: 'payments', is_configurable: true },
{ name: 'notify_member_payment_schedule_error', category: 'payments', is_configurable: false },
{ name: 'notify_admin_payment_schedule_gateway_canceled', category: 'payments', is_configurable: true },
{ name: 'notify_member_payment_schedule_gateway_canceled', category: 'payments', is_configurable: false },
{ name: 'notify_admin_user_supporting_document_files_created', category: 'supporting_documents', is_configurable: true },
{ name: 'notify_admin_user_supporting_document_files_updated', category: 'supporting_documents', is_configurable: true },
{ name: 'notify_user_is_validated', category: 'users_accounts', is_configurable: false },
{ name: 'notify_user_is_invalidated', category: 'users_accounts', is_configurable: false },
{ name: 'notify_user_supporting_document_refusal', category: 'supporting_documents', is_configurable: false },
{ name: 'notify_admin_user_supporting_document_refusal', category: 'supporting_documents', is_configurable: true },
{ name: 'notify_user_order_is_ready', category: 'shop', is_configurable: false },
{ name: 'notify_user_order_is_canceled', category: 'shop', is_configurable: false },
{ name: 'notify_user_order_is_refunded', category: 'shop', is_configurable: false },
{ name: 'notify_admin_low_stock_threshold', category: 'shop', is_configurable: true },
{ name: 'notify_admin_training_auto_cancelled', category: 'trainings', is_configurable: true },
{ name: 'notify_member_training_auto_cancelled', category: 'trainings', is_configurable: false }
].freeze
NOTIFICATIONS_TYPES.each do |notification_type|
next if NotificationType.find_by(name: notification_type[:name])
unless NotificationType.find_by(name: 'notify_member_reservation_limit_reached')
NotificationType.create!( NotificationType.create!(
name: 'notify_member_reservation_limit_reached', name: notification_type[:name],
category: 'agenda', category: notification_type[:category],
is_configurable: false is_configurable: notification_type[:is_configurable]
) )
end end