1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/models/tag.rb

11 lines
342 B
Ruby
Raw Normal View History

2020-03-30 11:33:12 +02:00
# frozen_string_literal: true
# Tag is a way to restrict an Availability for reservation to users with the same Tag.
2020-03-25 10:16:47 +01:00
class Tag < ApplicationRecord
2016-03-23 18:39:41 +01:00
has_many :user_tags, dependent: :destroy
has_many :users, through: :user_tags
has_many :availability_tags, dependent: :destroy
has_many :availabilities, through: :availability_tags
end