Skip to content
Snippets Groups Projects
Commit 6577d3a4 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Markdown now support users from groups

parent fdf7fc04
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -68,6 +68,7 @@ class Project < ActiveRecord::Base
has_many :deploy_keys, through: :deploy_keys_projects
 
delegate :name, to: :owner, allow_nil: true, prefix: true
delegate :members, to: :team, prefix: true
 
# Validations
validates :creator, presence: true
Loading
Loading
Loading
Loading
@@ -166,7 +166,7 @@ module Gitlab
end
 
def reference_user(identifier)
if member = @project.users_projects.joins(:user).where(users: { username: identifier }).first
if member = @project.team_members.find { |user| user.username == identifier }
link_to("@#{identifier}", user_path(identifier), html_options.merge(class: "gfm gfm-team_member #{html_options[:class]}")) if member
end
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment