mirror of
https://github.com/portainer/portainer.git
synced 2025-07-31 19:35:21 +02:00
* chore(project): install prettier and lint-staged * chore(project): apply prettier to html too * chore(project): git ignore eslintcache * chore(project): add a comment about format script * chore(prettier): update printWidth * chore(prettier): remove useTabs option * chore(prettier): add HTML validation * refactor(prettier): fix closing tags * feat(prettier): define angular parser for html templates * style(prettier): run prettier on codebase Co-authored-by: Anthony Lapenna <lapenna.anthony@gmail.com>
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
import gitlabResponseGetLink from './transform/gitlabResponseGetLink';
|
|
|
|
angular.module('portainer.extensions.registrymanagement').factory('Gitlab', [
|
|
'$resource',
|
|
'API_ENDPOINT_REGISTRIES',
|
|
function GitlabFactory($resource, API_ENDPOINT_REGISTRIES) {
|
|
'use strict';
|
|
return function (env) {
|
|
const headers = {};
|
|
if (env) {
|
|
headers['Private-Token'] = env.token;
|
|
headers['X-Gitlab-Domain'] = env.url;
|
|
}
|
|
|
|
const baseUrl = API_ENDPOINT_REGISTRIES + '/:id/proxies/gitlab/api/v4/projects';
|
|
|
|
return $resource(
|
|
baseUrl,
|
|
{ id: '@id' },
|
|
{
|
|
projects: {
|
|
method: 'GET',
|
|
params: { membership: 'true' },
|
|
transformResponse: gitlabResponseGetLink,
|
|
headers: headers,
|
|
},
|
|
repositories: {
|
|
method: 'GET',
|
|
url: baseUrl + '/:projectId/registry/repositories',
|
|
params: { tags: true },
|
|
headers: headers,
|
|
transformResponse: gitlabResponseGetLink,
|
|
},
|
|
}
|
|
);
|
|
};
|
|
},
|
|
]);
|