grafana/public/app/angular/components/TlsAuthSettingsCtrl.ts
Torkel Ödegaard dbcefb70f6
Angular: More isolation and removing of unused components (#41630)
* Angular: More isolation and removing of unused components

* Moved some more and fixed a test
2021-11-15 15:12:45 +01:00

11 lines
244 B
TypeScript

import { coreModule } from 'app/angular/core_module';
coreModule.directive('datasourceTlsAuthSettings', () => {
return {
scope: {
current: '=',
},
templateUrl: 'public/app/angular/partials/tls_auth_settings.html',
};
});