mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 18:21:04 +08:00
12 lines
370 B
Ruby
12 lines
370 B
Ruby
# frozen_string_literal: true
|
|
|
|
class WopiAction < ApplicationRecord
|
|
belongs_to :wopi_app, foreign_key: 'wopi_app_id', class_name: 'WopiApp'
|
|
|
|
validates :action, :extension, :urlsrc, :wopi_app, presence: true
|
|
|
|
def self.find_action(extension, activity)
|
|
WopiAction.distinct
|
|
.where('extension = ? and action = ?', extension, activity).first
|
|
end
|
|
end
|