mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
51 lines
1.2 KiB
TypeScript
51 lines
1.2 KiB
TypeScript
import { HttpClient } from '@angular/common/http'
|
|
import { Injectable } from '@angular/core'
|
|
import { tap } from 'rxjs/operators'
|
|
import { MailAccount } from 'src/app/data/mail-account'
|
|
import { AbstractPaperlessService } from './abstract-paperless-service'
|
|
|
|
@Injectable({
|
|
providedIn: 'root',
|
|
})
|
|
export class MailAccountService extends AbstractPaperlessService<MailAccount> {
|
|
loading: boolean
|
|
|
|
constructor(http: HttpClient) {
|
|
super(http, 'mail_accounts')
|
|
}
|
|
|
|
private reload() {
|
|
this.loading = true
|
|
this.listAll().subscribe((r) => {
|
|
this.mailAccounts = r.results
|
|
this.loading = false
|
|
})
|
|
}
|
|
|
|
private mailAccounts: MailAccount[] = []
|
|
|
|
get allAccounts() {
|
|
return this.mailAccounts
|
|
}
|
|
|
|
create(o: MailAccount) {
|
|
return super.create(o).pipe(tap(() => this.reload()))
|
|
}
|
|
|
|
update(o: MailAccount) {
|
|
// Remove expiration from the object before updating
|
|
delete o.expiration
|
|
return super.update(o).pipe(tap(() => this.reload()))
|
|
}
|
|
|
|
delete(o: MailAccount) {
|
|
return super.delete(o).pipe(tap(() => this.reload()))
|
|
}
|
|
|
|
test(o: MailAccount) {
|
|
const account = Object.assign({}, o)
|
|
delete account['set_permissions']
|
|
return this.http.post(this.getResourceUrl() + 'test/', account)
|
|
}
|
|
}
|