Rename Team class to ProjectTeam
This commit is contained in:
parent
c5f427b0a4
commit
6d1c566ec9
2 changed files with 2 additions and 2 deletions
|
@ -127,7 +127,7 @@ class Project < ActiveRecord::Base
|
||||||
end
|
end
|
||||||
|
|
||||||
def team
|
def team
|
||||||
@team ||= Team.new(self)
|
@team ||= ProjectTeam.new(self)
|
||||||
end
|
end
|
||||||
|
|
||||||
def repository
|
def repository
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
class Team
|
class ProjectTeam
|
||||||
attr_accessor :project
|
attr_accessor :project
|
||||||
|
|
||||||
def initialize(project)
|
def initialize(project)
|
Loading…
Add table
Add a link
Reference in a new issue