mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 07:19:41 +02:00
* wip * wip: missing repository & tags removal * feat(registry): private registry management * style(plugin-details): update view * wip * wip * wip * feat(plugins): add license info * feat(plugins): browse feature preview * feat(registry-configure): add the ability to configure registry management * style(app): update text in app * feat(plugins): add plugin version number * feat(plugins): wip plugin upgrade process * feat(plugins): wip plugin upgrade * feat(plugins): add the ability to update a plugin * feat(plugins): init plugins at startup time * feat(plugins): add the ability to remove a plugin * feat(plugins): update to latest plugin definitions * feat(plugins): introduce plugin-tooltip component * refactor(app): relocate plugin files to app/plugins * feat(plugins): introduce PluginDefinitionsURL constant * feat(plugins): update the flags used by the plugins * feat(plugins): wip * feat(plugins): display a label when a plugin has expired * wip * feat(registry-creation): update registry creation logic * refactor(registry-creation): change name/ids for inputs * feat(api): pass registry type to management configuration * feat(api): unstrip /v2 in regsitry proxy * docs(api): add TODO * feat(store): mockup-1 * feat(store): mockup 2 * feat(store): mockup 2 * feat(store): update mockup-2 * feat(app): add unauthenticated event check * update gruntfile * style(support): update support views * style(support): update product views * refactor(extensions): refactor plugins to extensions * feat(extensions): add a deal property * feat(extensions): introduce ExtensionManager * style(extensions): update extension details style * feat(extensions): display license/company when enabling extension * feat(extensions): update extensions views * feat(extensions): use ProductId defined in extension schema * style(app): remove padding left for form section title elements * style(support): use per host model * refactor(extensions): multiple refactors related to extensions mecanism * feat(extensions): update tls file path for registry extension * feat(extensions): update registry management configuration * feat(extensions): send license in header to extension proxy * fix(proxy): fix invalid default loopback address * feat(extensions): add header X-RegistryManagement-ForceNew for specific operations * feat(extensions): add the ability to display screenshots * feat(extensions): center screenshots * style(extensions): tune style * feat(extensions-details): open full screen image on click (#2517) * feat(extension-details): show magnifying glass on images * feat(extensions): support extension logo * feat(extensions): update support logos * refactor(lint): fix lint issues
23 lines
1.2 KiB
JavaScript
23 lines
1.2 KiB
JavaScript
angular.module('portainer')
|
|
.constant('API_ENDPOINT_AUTH', 'api/auth')
|
|
.constant('API_ENDPOINT_DOCKERHUB', 'api/dockerhub')
|
|
.constant('API_ENDPOINT_ENDPOINTS', 'api/endpoints')
|
|
.constant('API_ENDPOINT_ENDPOINT_GROUPS', 'api/endpoint_groups')
|
|
.constant('API_ENDPOINT_MOTD', 'api/motd')
|
|
.constant('API_ENDPOINT_EXTENSIONS', 'api/extensions')
|
|
.constant('API_ENDPOINT_REGISTRIES', 'api/registries')
|
|
.constant('API_ENDPOINT_RESOURCE_CONTROLS', 'api/resource_controls')
|
|
.constant('API_ENDPOINT_SCHEDULES', 'api/schedules')
|
|
.constant('API_ENDPOINT_SETTINGS', 'api/settings')
|
|
.constant('API_ENDPOINT_STACKS', 'api/stacks')
|
|
.constant('API_ENDPOINT_STATUS', 'api/status')
|
|
.constant('API_ENDPOINT_USERS', 'api/users')
|
|
.constant('API_ENDPOINT_TAGS', 'api/tags')
|
|
.constant('API_ENDPOINT_TEAMS', 'api/teams')
|
|
.constant('API_ENDPOINT_TEAM_MEMBERSHIPS', 'api/team_memberships')
|
|
.constant('API_ENDPOINT_TEMPLATES', 'api/templates')
|
|
.constant('API_ENDPOINT_WEBHOOKS', 'api/webhooks')
|
|
.constant('DEFAULT_TEMPLATES_URL', 'https://raw.githubusercontent.com/portainer/templates/master/templates.json')
|
|
.constant('PAGINATION_MAX_ITEMS', 10)
|
|
.constant('APPLICATION_CACHE_VALIDITY', 3600)
|
|
.constant('CONSOLE_COMMANDS_LABEL_PREFIX', 'io.portainer.commands.');
|