Commit 61dd5946 authored by Filipa Lacerda's avatar Filipa Lacerda Committed by Phil Hughes

Resolve "Wrong API call on releases page"

parent 84655c3f
...@@ -29,7 +29,7 @@ const Api = { ...@@ -29,7 +29,7 @@ const Api = {
commitPipelinesPath: '/:project_id/commit/:sha/pipelines', commitPipelinesPath: '/:project_id/commit/:sha/pipelines',
branchSinglePath: '/api/:version/projects/:id/repository/branches/:branch', branchSinglePath: '/api/:version/projects/:id/repository/branches/:branch',
createBranchPath: '/api/:version/projects/:id/repository/branches', createBranchPath: '/api/:version/projects/:id/repository/branches',
releasesPath: '/api/:version/project/:id/releases', releasesPath: '/api/:version/projects/:id/releases',
group(groupId, callback) { group(groupId, callback) {
const url = Api.buildUrl(Api.groupPath).replace(':id', groupId); const url = Api.buildUrl(Api.groupPath).replace(':id', groupId);
......
<script> <script>
import _ from 'underscore';
import { GlTooltipDirective, GlLink } from '@gitlab/ui'; import { GlTooltipDirective, GlLink } from '@gitlab/ui';
import Icon from '~/vue_shared/components/icon.vue'; import Icon from '~/vue_shared/components/icon.vue';
import UserAvatarLink from '~/vue_shared/components/user_avatar/user_avatar_link.vue'; import UserAvatarLink from '~/vue_shared/components/user_avatar/user_avatar_link.vue';
...@@ -30,8 +31,8 @@ export default { ...@@ -30,8 +31,8 @@ export default {
}); });
}, },
userImageAltDescription() { userImageAltDescription() {
return this.commit.author && this.commit.author.username return this.author && this.author.username
? sprintf("%{username}'s avatar", { username: this.commit.author.username }) ? sprintf("%{username}'s avatar", { username: this.author.username })
: null; : null;
}, },
commit() { commit() {
...@@ -40,6 +41,12 @@ export default { ...@@ -40,6 +41,12 @@ export default {
assets() { assets() {
return this.release.assets || {}; return this.release.assets || {};
}, },
author() {
return this.release.author || {};
},
hasAuthor() {
return _.isEmpty(this.author);
},
}, },
}; };
</script> </script>
...@@ -66,14 +73,14 @@ export default { ...@@ -66,14 +73,14 @@ export default {
}}</span> }}</span>
</div> </div>
<div v-if="commit.author" class="d-flex"> <div v-if="hasAuthor" class="d-flex">
by by
<user-avatar-link <user-avatar-link
class="prepend-left-4" class="prepend-left-4"
:link-href="commit.author.path" :link-href="author.path"
:img-src="commit.author.avatar_url" :img-src="author.avatar_url"
:img-alt="userImageAltDescription" :img-alt="userImageAltDescription"
:tooltip-text="commit.author.username" :tooltip-text="author.username"
/> />
</div> </div>
</div> </div>
......
...@@ -14,7 +14,7 @@ export default () => { ...@@ -14,7 +14,7 @@ export default () => {
render(createElement) { render(createElement) {
return createElement('app', { return createElement('app', {
props: { props: {
endpoint: element.dataset.endpoint, projectId: element.dataset.projectId,
documentationLink: element.dataset.documentationPath, documentationLink: element.dataset.documentationPath,
illustrationPath: element.dataset.illustrationPath, illustrationPath: element.dataset.illustrationPath,
}, },
......
...@@ -15,6 +15,16 @@ describe('Release block', () => { ...@@ -15,6 +15,16 @@ describe('Release block', () => {
author_name: 'Release bot', author_name: 'Release bot',
author_email: 'release-bot@example.com', author_email: 'release-bot@example.com',
created_at: '2012-05-28T05:00:00-07:00', created_at: '2012-05-28T05:00:00-07:00',
author: {
avatar_url: 'uploads/-/system/user/avatar/johndoe/avatar.png',
id: 482476,
name: 'John Doe',
path: '/johndoe',
state: 'active',
status_tooltip_html: null,
username: 'johndoe',
web_url: 'https://gitlab.com/johndoe',
},
commit: { commit: {
id: '2695effb5807a22ff3d138d593fd856244e155e7', id: '2695effb5807a22ff3d138d593fd856244e155e7',
short_id: '2695effb', short_id: '2695effb',
...@@ -28,16 +38,6 @@ describe('Release block', () => { ...@@ -28,16 +38,6 @@ describe('Release block', () => {
committer_name: 'Jack Smith', committer_name: 'Jack Smith',
committer_email: 'jack@example.com', committer_email: 'jack@example.com',
committed_date: '2012-05-28T04:42:42-07:00', committed_date: '2012-05-28T04:42:42-07:00',
author: {
avatar_url: 'uploads/-/system/user/avatar/johndoe/avatar.png',
id: 482476,
name: 'John Doe',
path: '/johndoe',
state: 'active',
status_tooltip_html: null,
username: 'johndoe',
web_url: 'https://gitlab.com/johndoe',
},
}, },
assets: { assets: {
count: 6, count: 6,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment