1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-02 04:15:28 +02:00

refactor(docker/configs): remove EndpointProvider [EE-5746] (#9198)

This commit is contained in:
Chaim Lev-Ari 2023-08-31 22:11:57 +02:00 committed by GitHub
parent cd3c6e3089
commit 1b0fd60115
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 25 additions and 23 deletions

View file

@ -608,7 +608,7 @@ angular.module('portainer.docker').controller('CreateServiceController', [
volumes: VolumeService.volumes(),
networks: NetworkService.networks(true, true, false),
secrets: apiVersion >= 1.25 ? SecretService.secrets() : [],
configs: apiVersion >= 1.3 ? ConfigService.configs() : [],
configs: apiVersion >= 1.3 ? ConfigService.configs(endpoint.Id) : [],
nodes: NodeService.nodes(),
availableLoggingDrivers: PluginService.loggingPlugins(apiVersion < 1.25),
allowBindMounts: checkIfAllowedBindMounts(),