Skip to content

Instantly share code, notes, and snippets.

View alison985's full-sized avatar
🖤
#BLM

Alison (she/her) alison985

🖤
#BLM
View GitHub Profile
function GetDataSourceVersionCtrl(Events, toastr, $scope, DataSource) {
// 'ngInject';
// this works but hard codes the data source id
this.getDataSourceVersion = DataSource.version({ id: 6 });
// this doesn't event lint (unexpected block) for some reason but also doesn't work
this.getDSV = (variable) => {
return DataSource.version({ id: variable});
};