diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2018-03-05 15:45:35 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2018-03-05 15:45:35 +0200 |
commit | 1b54a8cdda14ae5455fe1667ac15420a2f9bf051 (patch) | |
tree | 65cb93ccc722a1ccf2fefdb7e8162d6fef7b630a /app/views/invites | |
parent | 86df5c679318ded0a7b2680346841b552eaabd53 (diff) | |
download | gitlab-ce-1b54a8cdda14ae5455fe1667ac15420a2f9bf051.tar.gz |
Replace deprecated name_with_namespace with full_name in app/views
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/views/invites')
-rw-r--r-- | app/views/invites/show.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/invites/show.html.haml b/app/views/invites/show.html.haml index ad6213b4efd..c2bb1216c5f 100644 --- a/app/views/invites/show.html.haml +++ b/app/views/invites/show.html.haml @@ -12,7 +12,7 @@ - project = @member.source project %strong - = link_to project.name_with_namespace, project_url(project) + = link_to project.full_name, project_url(project) - when Group - group = @member.source group |