logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: 146ec80285a7f4e8a64ce286f7ddd69c59841695
parent: 7b397ed125b55172390a8143bfb21ecab571ad97
Author: eal <eal@waifu.club>
Date:   Sat, 18 Nov 2017 14:38:05 +0000

Merge branch 'fix/mastofe-login-redirect' into 'develop'

Redirect to Getting Started on login.

See merge request pleroma/pleroma!21

Diffstat:

Mlib/pleroma/web/mastodon_api/mastodon_api_controller.ex2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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