This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/app/models/label.rb
2014-11-21 00:39:38 +01:00

11 lines
179 B
Ruby

class Label < ActiveRecord::Base
validates_presence_of :name
belongs_to :role
has_and_belongs_to_many :forums
has_many :forumthreads
def to_s
name.upcase
end
end