mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-08 00:23:01 +08:00
12 lines
No EOL
323 B
Ruby
12 lines
No EOL
323 B
Ruby
class WopiAction < ActiveRecord::Base
|
|
|
|
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 |