Skip to content

Commit

Permalink
Add remote and local config for feature
Browse files Browse the repository at this point in the history
  • Loading branch information
karlenDimla committed Sep 30, 2024
1 parent 125fcf0 commit d7858d8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ interface VpnRemoteFeatures {

@DefaultValue(true)
fun showExcludeAppPrompt(): Toggle // kill switch

@DefaultValue(true)
fun allowAutoExcludeBrokenApps(): Toggle // kill switch
}

@ContributesBinding(AppScope::class)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ interface NetPSettingsLocalConfig {

@Toggle.DefaultValue(false)
fun permanentRemoveExcludeAppPrompt(): Toggle

@Toggle.DefaultValue(false)
fun autoExcludeBrokenApps(): Toggle
}

@ContributesBinding(AppScope::class)
Expand Down

0 comments on commit d7858d8

Please sign in to comment.