mirror of
http://ghproxy.cn/https://github.com/multunus/onemdm-server
synced 2025-12-06 02:04:57 +00:00
14 lines
283 B
Ruby
14 lines
283 B
Ruby
class App < ActiveRecord::Base
|
|
|
|
default_scope {order("name")}
|
|
|
|
has_many :batch_installations, dependent: :destroy
|
|
|
|
validates :name, :package_name, presence: true
|
|
|
|
def apk_url
|
|
return DEFAULT_APP_URL if self.package_name.eql?(DEFAULT_APP_PACKAGE_NAME)
|
|
""
|
|
end
|
|
end
|