mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-01-16 22:04:21 -06:00
Chore: update to Angular 20 (#10273)
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
import { HttpClient } from '@angular/common/http'
|
||||
import { Injectable } from '@angular/core'
|
||||
import { tap } from 'rxjs/operators'
|
||||
import { MailRule } from 'src/app/data/mail-rule'
|
||||
@@ -10,8 +9,9 @@ import { AbstractPaperlessService } from './abstract-paperless-service'
|
||||
export class MailRuleService extends AbstractPaperlessService<MailRule> {
|
||||
loading: boolean
|
||||
|
||||
constructor(http: HttpClient) {
|
||||
super(http, 'mail_rules')
|
||||
constructor() {
|
||||
super()
|
||||
this.resourceName = 'mail_rules'
|
||||
}
|
||||
|
||||
private reload() {
|
||||
|
||||
Reference in New Issue
Block a user