Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
teatst
Browse files Browse the repository at this point in the history
  • Loading branch information
soner-yuksel committed Nov 2, 2023
1 parent 8e53d50 commit f01db94
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Sources/Shared/AppConstants.swift
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,16 @@ public enum AppBuildChannel: String {

public var dauServerChannelParam: String {
switch self {
case .release, .enterprise:
case .release:
return "release"
case .beta, .debug:
case .beta:
return "beta"
case .dev:
return "dev"
case .debug:
return "developer"
case .enterprise:
return "invalid"
}
}
}
Expand Down

0 comments on commit f01db94

Please sign in to comment.