mirror of
https://github.com/google/nomulus
synced 2026-09-20 06:54:43 +00:00
Add console /registrars GET endpoint (#2050)
This commit is contained in:
@@ -49,13 +49,11 @@ export class ContactService {
|
||||
contacts: Contact[],
|
||||
registrarId?: string
|
||||
): Observable<Contact[]> {
|
||||
return this.backend
|
||||
.postContacts(registrarId || 'default', contacts)
|
||||
.pipe(
|
||||
tap((_) => {
|
||||
this.contacts = contacts;
|
||||
})
|
||||
);
|
||||
return this.backend.postContacts(registrarId || 'default', contacts).pipe(
|
||||
tap((_) => {
|
||||
this.contacts = contacts;
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
updateContact(index: number, contact: Contact) {
|
||||
|
||||
Reference in New Issue
Block a user