Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
app
/
graphql
/
types
/
Filename :
communication_channel_type.rb
back
Copy
# frozen_string_literal: true # # Copyright (C) 2020 - 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 Types class CommunicationChannelType < ApplicationObjectType graphql_name "CommunicationChannel" implements GraphQL::Types::Relay::Node implements Interfaces::TimestampInterface implements Interfaces::LegacyIDInterface global_id_field :id field :path, String, null: true field :path_type, String, null: true field :notification_policies, [NotificationPolicyType], null: true do argument :context_type, NotificationPreferencesContextType, required: false end def notification_policies(context_type: nil) NotificationPolicy.find_all_for(object, context_type:) end field :notification_policy_overrides, [NotificationPolicyType], null: true do argument :account_id, ID, required: false, prepare: GraphQLHelpers.relay_or_legacy_id_prepare_func("Account") argument :course_id, ID, required: false, prepare: GraphQLHelpers.relay_or_legacy_id_prepare_func("Course") argument :context_type, NotificationPreferencesContextType, required: true end def notification_policy_overrides(account_id: nil, course_id: nil, context_type: nil) overrides_for = lambda do |context| NotificationPolicyOverride.find_all_for(current_user, [context], channel: object) end case context_type when "Account" overrides_for[Account.find(account_id)] when "Course" overrides_for[Course.find(course_id)] end rescue ActiveRecord::RecordNotFound nil end end end