Skip to content

Commit

Permalink
feat(nzbr.de): Add bluesky-verification TXT record
Browse files Browse the repository at this point in the history
This commit adds a new TXT record for the 'bluesky-verification' subname in the NzbrDeComponent. The record contains the value 'did=did:plc:y5mspbnzjs43jp6awaienvgq'.
  • Loading branch information
nzbr committed Aug 24, 2023
1 parent 8e137c0 commit bbfe3ae
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/desec/nzbr-de.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,16 @@ export class NzbrDeComponent extends Component {
ttl: 3600,
}));

this.mk('bluesky-verification', RRSet, () => ({
domain: (this.resources[domain]() as Domain).name,
subname: '_atproto',
type: 'TXT',
records: [
'did=did:plc:y5mspbnzjs43jp6awaienvgq',
],
ttl: 3600,
}));

this.mk('TXT', RRSet, () => ({
domain: (this.resources[domain]() as Domain).name,
subname: '',
Expand Down

0 comments on commit bbfe3ae

Please sign in to comment.