File tree 1 file changed +0
-7
lines changed
1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,6 @@ type Backend interface {
113
113
HTTPClient () * http.Client
114
114
LookupInsuredAccounts (accountCode accountsTypes.Code ) ([]bitsurance.AccountDetails , error )
115
115
Authenticate (force bool )
116
- TriggerAuth ()
117
116
ForceAuth ()
118
117
CancelConnectKeystore ()
119
118
SetWatchonly (rootFingerprint []byte , watchonly bool ) error
@@ -209,7 +208,6 @@ func NewHandlers(
209
208
getAPIRouterNoError (apiRouter )("/banners/{key}" , handlers .getBanners ).Methods ("GET" )
210
209
getAPIRouterNoError (apiRouter )("/using-mobile-data" , handlers .getUsingMobileData ).Methods ("GET" )
211
210
getAPIRouterNoError (apiRouter )("/authenticate" , handlers .postAuthenticate ).Methods ("POST" )
212
- getAPIRouterNoError (apiRouter )("/trigger-auth" , handlers .postTriggerAuth ).Methods ("POST" )
213
211
getAPIRouterNoError (apiRouter )("/force-auth" , handlers .postForceAuth ).Methods ("POST" )
214
212
getAPIRouter (apiRouter )("/set-dark-theme" , handlers .postDarkTheme ).Methods ("POST" )
215
213
getAPIRouterNoError (apiRouter )("/detect-dark-theme" , handlers .getDetectDarkTheme ).Methods ("GET" )
@@ -516,11 +514,6 @@ func (handlers *Handlers) postAuthenticate(r *http.Request) interface{} {
516
514
return nil
517
515
}
518
516
519
- func (handlers * Handlers ) postTriggerAuth (r * http.Request ) interface {} {
520
- handlers .backend .TriggerAuth ()
521
- return nil
522
- }
523
-
524
517
func (handlers * Handlers ) postForceAuth (r * http.Request ) interface {} {
525
518
handlers .backend .ForceAuth ()
526
519
return nil
You can’t perform that action at this time.
0 commit comments