1
0
Fork 0

Remove success path

master
Vlad Filippov 2019-04-12 14:34:16 -04:00 committed by Emily Kager
parent bc1b7e0b43
commit 08edb1532e
3 changed files with 2 additions and 3 deletions

View File

@ -30,6 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- #1139 - Resolved a 170ms delay on cold start
- #176 - Added a swipe to delete gesture on home screen
- #1539 - Added bookmarks multi-select related features
- #1603 - Remove deprecated success path for Firefox Accounts login
### Changed
- #1429 - Updated site permissions ui for MVP

View File

@ -25,7 +25,6 @@ class BackgroundServices(
companion object {
const val CLIENT_ID = "a2270f727f45f648"
const val REDIRECT_URL = "https://accounts.firefox.com/oauth/success/$CLIENT_ID"
const val SUCCESS_PATH = "connect_another_device?showSuccessMessage=true"
}
// This is slightly messy - here we need to know the union of all "scopes"

View File

@ -19,8 +19,7 @@ class Services(
FirefoxAccountsAuthFeature(
accountManager,
tabsUseCases,
redirectUrl = BackgroundServices.REDIRECT_URL,
successPath = BackgroundServices.SUCCESS_PATH
redirectUrl = BackgroundServices.REDIRECT_URL
)
}
}