mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 13:39:19 -06:00
dbcefb70f6
* Angular: More isolation and removing of unused components * Moved some more and fixed a test
11 lines
244 B
TypeScript
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',
|
|
};
|
|
});
|