修复因为ISSUE引起的bug;
This commit is contained in:
parent
6f54e1680d
commit
0ef943d5f3
|
@ -377,7 +377,7 @@ module IssuesHelper
|
||||||
# this method is used to get all projects that tagged one tag
|
# this method is used to get all projects that tagged one tag
|
||||||
# added by william
|
# added by william
|
||||||
def get_issues_by_tag(tag_name)
|
def get_issues_by_tag(tag_name)
|
||||||
Issue.tagged_with(tag_name).by_join_date
|
Issue.tagged_with(tag_name)
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -58,7 +58,7 @@ module UsersHelper
|
||||||
# this method is used to get all projects that tagged one tag
|
# this method is used to get all projects that tagged one tag
|
||||||
# added by william
|
# added by william
|
||||||
def get_users_by_tag(tag_name)
|
def get_users_by_tag(tag_name)
|
||||||
User.tagged_with(tag_name).by_join_date
|
User.tagged_with(tag_name)
|
||||||
end
|
end
|
||||||
|
|
||||||
# added by fq
|
# added by fq
|
||||||
|
|
Loading…
Reference in New Issue