ToolJet/app/models/folder.rb

6 lines
131 B
Ruby
Raw Normal View History

2021-05-19 07:35:26 +00:00
class Folder < ApplicationRecord
belongs_to :organization
2021-05-19 09:12:10 +00:00
has_many :folder_apps
has_many :apps, :through => :folder_apps
2021-05-19 07:35:26 +00:00
end