ToolJet/app/models/folder.rb
2021-05-19 14:42:10 +05:30

5 lines
131 B
Ruby

class Folder < ApplicationRecord
belongs_to :organization
has_many :folder_apps
has_many :apps, :through => :folder_apps
end