Unverified Commit 3ec9970f authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

traewelling oauth: pass HTTP redirect_uri in development mode

parent db7e5faa
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -26,8 +26,10 @@ sub oauth {

	return $self->oauth2->get_token_p(
		traewelling => {
			redirect_uri => $self->base_url_for('/oauth/traewelling')
			  ->to_abs->scheme('https')->to_string,
			redirect_uri =>
			  $self->base_url_for('/oauth/traewelling')->to_abs->scheme(
				$self->app->mode eq 'development' ? 'http' : 'https'
			)->to_string,
			scope => 'read-statuses write-statuses'
		}
	)->then(