diff options
author | eal <eal@waifu.club> | 2017-11-16 20:47:44 +0200 |
---|---|---|
committer | eal <eal@waifu.club> | 2017-11-16 20:47:44 +0200 |
commit | 9c60cc88dfd1401ddc7d67ea7ec6d0220f11c242 (patch) | |
tree | 6542c9af19a187c47ba4faa1bb7b227400b75c96 /lib | |
parent | a743940463a7d0a7346f77792310dff6a98e7f31 (diff) | |
download | pleroma-9c60cc88dfd1401ddc7d67ea7ec6d0220f11c242.tar.gz |
Redirect to Getting Started on login.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/mastodon_api/mastodon_api_controller.ex | 2 |
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 |