A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

Wait with OAuth redirection until the next step

+5 -5
+1 -1
src/Applications/UI.elm
··· 560 560 , service = 561 561 service 562 562 } 563 - |> (\c -> { form | context = c, step = UI.Sources.Form.How }) 563 + |> (\c -> { form | context = c, step = UI.Sources.Form.By }) 564 564 |> (\f -> { sources | form = f }) 565 565 |> (\s -> { model | sources = s }) 566 566 |> return
+4 -4
src/Applications/UI/Sources/Form.elm
··· 144 144 145 145 TakeStep -> 146 146 case ( model.step, model.context.service ) of 147 - ( Where, Dropbox ) -> 147 + ( How, Dropbox ) -> 148 148 model.context.data 149 149 |> Sources.Services.Dropbox.authorizationUrl 150 150 |> ExternalSourceAuthorization 151 151 |> returnReplyWithModel model 152 152 153 - ( Where, Google ) -> 153 + ( How, Google ) -> 154 154 model.context.data 155 155 |> Sources.Services.Google.authorizationUrl 156 156 |> ExternalSourceAuthorization ··· 290 290 [ inline 291 291 [ T.fw6 ] 292 292 [ text "If you don't know what any of this is, " 293 - , text "carry on to the next screen." 293 + , text "continue to the next screen." 294 294 ] 295 295 , text " Changing the app key allows you to use your own Dropbox app." 296 296 ] ··· 300 300 [ inline 301 301 [ T.fw6 ] 302 302 [ text "If you don't know what any of this is, " 303 - , text "carry on to the next screen." 303 + , text "continue to the next screen." 304 304 ] 305 305 , text " Changing the client stuff allows you to use your own Google OAuth client." 306 306 ]