░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/app/models/users
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: creation_notify_policy.rb
# frozen_string_literal: true # # Copyright (C) 2015 - present Instructure, Inc. # # This file is part of Canvas. # # Canvas is free software: you can redistribute it and/or modify it under # the terms of the GNU Affero General Public License as published by the Free # Software Foundation, version 3 of the License. # # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more # details. # # You should have received a copy of the GNU Affero General Public License along # with this program. If not, see <http://www.gnu.org/licenses/>. module Users class CreationNotifyPolicy def initialize(can_manage_users, opts = {}) @send_confirmation = opts[:send_confirmation] @is_manager = can_manage_users @force_self_registration = opts[:force_self_registration] end def is_self_registration? !!(force_self_registration || !is_manager) end def dispatch!(user, pseudonym, channel) if is_self_registration? send_self_registration_email(pseudonym) return true elsif send_confirmation send_confirmation_email(user, pseudonym) return true elsif pseudonym.account.feature_enabled?(:self_service_user_merge) && channel.has_merge_candidates? channel.send_merge_notification! end false end private attr_reader :is_manager def send_self_registration_email(pseudonym) pseudonym.send_confirmation! end def send_confirmation_email(user, pseudonym) if user.registered? pseudonym.send_registration_done_notification! else pseudonym.send_registration_notification! end end def send_confirmation Canvas::Plugin.value_to_boolean(@send_confirmation) end def force_self_registration Canvas::Plugin.value_to_boolean(@force_self_registration) end end end
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 access_verifier.rb
RB
2.6 KB
2023-09-24 03:36
EDIT
📄 creation_notify_policy.rb
RB
2 KB
2023-09-24 03:36
EDIT