Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add avahi Advertiser to UI #1266

Merged
merged 3 commits into from
Jan 17, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
add avahi Advertiser
  • Loading branch information
donavanbecker authored Jan 6, 2022
commit 667474ed6547e0a9b433a0574238d3eaafed82c9
4 changes: 2 additions & 2 deletions src/modules/server/server.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export class HomebridgeNetworkInterfacesDto {
export class HomebridgeMdnsSettingDto {
@IsString()
@IsDefined()
@IsIn(['ciao', 'bonjour-hap'])
@IsIn(['avahi', 'ciao', 'bonjour-hap'])
@ApiProperty()
advertiser: 'ciao' | 'bonjour-hap';
advertiser: 'avahi' | 'ciao' | 'bonjour-hap';
}