mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
44 lines
1009 B
TypeScript
44 lines
1009 B
TypeScript
import { HttpClient } from '@angular/common/http'
|
|
import { Injectable } from '@angular/core'
|
|
import { combineLatest, Observable } from 'rxjs'
|
|
import { tap } from 'rxjs/operators'
|
|
import { MailRule } from 'src/app/data/mail-rule'
|
|
import { AbstractPaperlessService } from './abstract-paperless-service'
|
|
|
|
@Injectable({
|
|
providedIn: 'root',
|
|
})
|
|
export class MailRuleService extends AbstractPaperlessService<MailRule> {
|
|
loading: boolean
|
|
|
|
constructor(http: HttpClient) {
|
|
super(http, 'mail_rules')
|
|
}
|
|
|
|
private reload() {
|
|
this.loading = true
|
|
this.listAll().subscribe((r) => {
|
|
this.mailRules = r.results
|
|
this.loading = false
|
|
})
|
|
}
|
|
|
|
private mailRules: MailRule[] = []
|
|
|
|
get allRules() {
|
|
return this.mailRules
|
|
}
|
|
|
|
create(o: MailRule) {
|
|
return super.create(o).pipe(tap(() => this.reload()))
|
|
}
|
|
|
|
update(o: MailRule) {
|
|
return super.update(o).pipe(tap(() => this.reload()))
|
|
}
|
|
|
|
delete(o: MailRule) {
|
|
return super.delete(o).pipe(tap(() => this.reload()))
|
|
}
|
|
}
|