Skip to content

Instantly share code, notes, and snippets.

@StephenFiser
Created September 25, 2013 01:37
Show Gist options
  • Save StephenFiser/6693980 to your computer and use it in GitHub Desktop.
Save StephenFiser/6693980 to your computer and use it in GitHub Desktop.
class Team < ActiveRecord::Base
attr_accessible :name
has_many :presenters
def compound_team_name
name + '_' + department.id
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment