2017-12-23 15:44:19 -05:00
|
|
|
import { WidgetComponent } from "../widget.component";
|
|
|
|
import { WIDGET_GOOGLE_DOCS } from "../../../shared/models/widget";
|
|
|
|
import { Component } from "@angular/core";
|
2020-10-23 07:30:20 -04:00
|
|
|
import { TranslateService } from "@ngx-translate/core";
|
2017-12-23 15:44:19 -05:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
templateUrl: "gdoc.widget.component.html",
|
|
|
|
styleUrls: ["gdoc.widget.component.scss"],
|
|
|
|
})
|
|
|
|
export class GoogleDocsWidgetConfigComponent extends WidgetComponent {
|
2020-10-23 07:30:20 -04:00
|
|
|
constructor(public translate: TranslateService) {
|
|
|
|
super(WIDGET_GOOGLE_DOCS, "Google Doc", "generic", translate , "googleDocs");
|
2017-12-23 15:44:19 -05:00
|
|
|
}
|
2020-10-23 07:30:20 -04:00
|
|
|
}
|