mirror of
https://github.com/grafana/grafana.git
synced 2025-02-10 07:35:45 -06:00
11 lines
247 B
TypeScript
11 lines
247 B
TypeScript
import { coreModule } from 'app/core/core';
|
|
|
|
coreModule.directive('datasourceTlsAuthSettings', () => {
|
|
return {
|
|
scope: {
|
|
current: '=',
|
|
},
|
|
templateUrl: 'public/app/features/datasources/partials/tls_auth_settings.html',
|
|
};
|
|
});
|