mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-12 19:48:36 +00:00
* Improves ruby code in app/models/app_user.rb based on suggestions from Rubocop * Rubocop fixes for more models
7 lines
159 B
Ruby
7 lines
159 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Folder < ApplicationRecord
|
|
belongs_to :organization
|
|
has_many :folder_apps
|
|
has_many :apps, through: :folder_apps
|
|
end
|