logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: 34646c6923a928a452203f4722f2b81cf23c4853
parent: 5a4e2905fecfd21cf92f6b2844f15f5ee84b33f5
Author: href <href+git-pleroma@random.sh>
Date:   Fri, 22 Feb 2019 11:16:10 +0000

Merge branch 'oauth2_scopes_migration_hotfix' into 'develop'

Fixed `scopes` of apps / authorizations / tokens from apps initially created with space-delimited `scope`

Closes #660

See merge request pleroma/pleroma!853

Diffstat:

Apriv/repo/migrations/20190222104808_data_migration_normalize_scopes.exs11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)

diff --git a/priv/repo/migrations/20190222104808_data_migration_normalize_scopes.exs b/priv/repo/migrations/20190222104808_data_migration_normalize_scopes.exs @@ -0,0 +1,11 @@ +defmodule Pleroma.Repo.Migrations.DataMigrationNormalizeScopes do + use Ecto.Migration + + def up do + for t <- [:apps, :oauth_authorizations, :oauth_tokens] do + execute "UPDATE #{t} SET scopes = string_to_array(array_to_string(scopes, ' '), ' ');" + end + end + + def down, do: :noop +end