Merge branch 'master' into og-api-tokens-simple

This commit is contained in:
Oliver Gorwits
2019-03-12 14:59:54 +00:00
9 changed files with 212 additions and 121 deletions

View File

@@ -11,7 +11,8 @@ register_worker({ phase => 'main' }, sub {
my $extra = $job->extra;
my $config = config();
p ($extra ? $config->{$extra} : $config);
my $dump = ($extra ? $config->{$extra} : $config);
p $dump;
return Status->done('Dumped config');
});