* help ios downlaod .crt and add begin add masked for addresses

* only require and show CA for public domain if addSsl

* fix type and revert i18n const

* feat: add address masking and adjust design (#3088)

* feat: add address masking and adjust design

* update lockfile

* chore: move eye button to actions

* chore: refresh notifications and handle action error

* static width for health check name

---------

Co-authored-by: Matt Hill <mattnine@protonmail.com>

* hide certificate authorities tab

* alpha.17

* add waiting health check status

* remove "on" from waiting message

* reject on abort in `.watch`

* id migration: nostr -> nostr-rs-relay

* health check waiting state

* use interface type for launch button

* better wording for masked

* cleaner

* sdk improvements

* fix type error

* fix notification badge issue

---------

Co-authored-by: Alex Inkin <alexander@inkin.ru>
Co-authored-by: Aiden McClelland <me@drbonez.dev>
This commit is contained in:
Matt Hill
2025-12-31 11:30:57 -07:00
committed by GitHub
parent 96ae532879
commit c9a7f519b9
99 changed files with 1535 additions and 1120 deletions

View File

@@ -12,8 +12,7 @@ import {
ValidatorFn,
Validators,
} from '@angular/forms'
import { DialogService, ErrorService } from '@start9labs/shared'
import { TuiResponsiveDialogService } from '@taiga-ui/addon-mobile'
import { ErrorService } from '@start9labs/shared'
import { tuiMarkControlAsTouchedAndValidate, TuiValidator } from '@taiga-ui/cdk'
import {
TuiAlertService,

View File

@@ -10,11 +10,11 @@ export class AuthService {
private readonly storage = inject(WA_LOCAL_STORAGE)
private readonly effect = effect(() => {
if (this.authenticated()) {
this.storage.setItem(KEY, JSON.stringify(true))
this.storage?.setItem(KEY, JSON.stringify(true))
} else {
this.storage.removeItem(KEY)
this.storage?.removeItem(KEY)
}
})
readonly authenticated = signal(Boolean(this.storage.getItem(KEY)))
readonly authenticated = signal(Boolean(this.storage?.getItem(KEY)))
}