mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-14 20:48:25 +00:00
5 lines
131 B
Ruby
5 lines
131 B
Ruby
class Folder < ApplicationRecord
|
|
belongs_to :organization
|
|
has_many :folder_apps
|
|
has_many :apps, :through => :folder_apps
|
|
end
|