2024-02-22 10:09:20 +01:00
|
|
|
import {Component} from '@angular/core';
|
|
|
|
import {PluginDiscoverBySubcommunity} from "./plugin-discover-by-subcommunity.component";
|
2024-02-28 12:07:31 +01:00
|
|
|
import {PluginBaseFormComponent} from "../../utils/base-plugin.form.component";
|
2024-02-22 10:09:20 +01:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'plugin-discover-by-subcommunity-form',
|
|
|
|
template: `
|
|
|
|
<div *ngIf="pluginObject" class="uk-padding-xsmall">
|
|
|
|
<plugin-field-edit [value]="pluginObject.title"
|
|
|
|
type="text" field="title" (changed)="valueChanged($event)" ></plugin-field-edit>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
`,
|
|
|
|
|
|
|
|
|
|
|
|
})
|
2024-02-28 12:07:31 +01:00
|
|
|
export class PluginDiscoverBySubcommunityFormComponent extends PluginBaseFormComponent<PluginDiscoverBySubcommunity> {
|
|
|
|
constructor() {
|
2024-02-22 10:09:20 +01:00
|
|
|
super()
|
|
|
|
}
|
|
|
|
}
|