- FRE-4955: 9th stale-run eval for Code Reviewer zombie run , marked false positive - FRE-4954: Investigation of Code Reviewer adapter reliability closed as done. Root cause: no heartbeat/adapter config. Fix tracked in FRE-4956 (CEO) - Broader CTO oversight: Senior Engineer bottleneck (19 in_review), Code Reviewer ghost runs awaiting FRE-4956 Co-Authored-By: Paperclip <noreply@paperclip.ing>
17 lines
409 B
Swift
17 lines
409 B
Swift
import Foundation
|
|
|
|
struct AppSettings {
|
|
static let appVersion = "1.0.0"
|
|
static let buildNumber = "1"
|
|
|
|
static let termsOfServiceURL = URL(string: "https://lendair.app/terms/2026-03-22")
|
|
static let privacyPolicyURL = URL(string: "https://lendair.app/privacy/2026-03-25")
|
|
}
|
|
|
|
enum AccountAction {
|
|
case logout
|
|
case deleteAccount
|
|
case viewTermsOfService
|
|
case viewPrivacyPolicy
|
|
}
|