import {Component} from "@angular/core"; import {SettingsComponent} from "../_abstract/abstract.settings.component"; import {AuthenticationService} from "../../model/network/authentication.service"; import {NavigationService} from "../../model/navigation.service"; import {NotificationService} from "../../model/notification.service"; import {ClientConfig} from "../../../../common/config/public/ConfigClass"; import {ShareSettingsService} from "./share.settings.service"; import {I18n} from "@ngx-translate/i18n-polyfill"; @Component({ selector: 'settings-share', templateUrl: './share.settings.component.html', styleUrls: ['./share.settings.component.css', './../_abstract/abstract.settings.component.css'], providers: [ShareSettingsService], }) export class ShareSettingsComponent extends SettingsComponent { constructor(_authService: AuthenticationService, _navigation: NavigationService, _settingsService: ShareSettingsService, notification: NotificationService, i18n: I18n) { super(i18n("Share"), _authService, _navigation, _settingsService, notification, i18n, s => s.Client.Sharing); } }