aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreal <eal@waifu.club>2017-11-18 14:38:05 +0000
committereal <eal@waifu.club>2017-11-18 14:38:05 +0000
commit146ec80285a7f4e8a64ce286f7ddd69c59841695 (patch)
tree800d8d37703b28a28d189495dec3b5368671a689
parent7b397ed125b55172390a8143bfb21ecab571ad97 (diff)
parent9c60cc88dfd1401ddc7d67ea7ec6d0220f11c242 (diff)
downloadpleroma-146ec80285a7f4e8a64ce286f7ddd69c59841695.tar.gz
Merge branch 'fix/mastofe-login-redirect' into 'develop'
Redirect to Getting Started on login. See merge request pleroma/pleroma!21
-rw-r--r--lib/pleroma/web/mastodon_api/mastodon_api_controller.ex2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex b/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex
index bbd003b06..e1256c7b6 100644
--- a/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex
+++ b/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex
@@ -579,7 +579,7 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
{:ok, token} <- Token.exchange_token(app, auth) do
conn
|> put_session(:oauth_token, token.token)
- |> redirect(to: "/web/timelines/public")
+ |> redirect(to: "/web/getting-started")
end
end