mirror of
https://github.com/wallabag/wallabag.git
synced 2025-02-17 11:15:16 +00:00
Merge pull request #2095 from wallabag/fix-2auth-form
Fix form user display when 2FA is disabled
This commit is contained in:
commit
782390a80e
7 changed files with 32 additions and 10 deletions
|
@ -20,6 +20,7 @@ php:
|
||||||
- 5.5
|
- 5.5
|
||||||
- 5.6
|
- 5.6
|
||||||
- 7.0
|
- 7.0
|
||||||
|
- 7.1
|
||||||
- nightly
|
- nightly
|
||||||
- hhvm
|
- hhvm
|
||||||
|
|
||||||
|
@ -38,6 +39,7 @@ matrix:
|
||||||
env: DB=pgsql # driver for PostgreSQL currently unsupported by HHVM, requires 3rd party dependency
|
env: DB=pgsql # driver for PostgreSQL currently unsupported by HHVM, requires 3rd party dependency
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- php: hhvm
|
- php: hhvm
|
||||||
|
- php: nightly
|
||||||
|
|
||||||
# exclude v1 branches
|
# exclude v1 branches
|
||||||
branches:
|
branches:
|
||||||
|
@ -46,7 +48,8 @@ branches:
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then echo "memory_limit=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi;
|
- if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then echo "memory_limit=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi;
|
||||||
- if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then phpenv config-rm xdebug.ini; fi;
|
# xdebug isn't enable for PHP 7.1
|
||||||
|
- if [[ $TRAVIS_PHP_VERSION != '7.1' && $TRAVIS_PHP_VERSION != 'hhvm' ]]; then phpenv config-rm xdebug.ini; fi
|
||||||
- composer self-update --no-progress
|
- composer self-update --no-progress
|
||||||
- if [[ "$DB" = "pgsql" ]]; then psql -c 'create database wallabag_test;' -U postgres; fi;
|
- if [[ "$DB" = "pgsql" ]]; then psql -c 'create database wallabag_test;' -U postgres; fi;
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ class StringToListTransformer implements DataTransformerInterface
|
||||||
private $separator;
|
private $separator;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $separator The separator used in the list.
|
* @param string $separator The separator used in the list
|
||||||
*/
|
*/
|
||||||
public function __construct($separator = ',')
|
public function __construct($separator = ',')
|
||||||
{
|
{
|
||||||
|
|
|
@ -21,7 +21,9 @@ class ConfigType extends AbstractType
|
||||||
{
|
{
|
||||||
$this->themes = array_combine(
|
$this->themes = array_combine(
|
||||||
$themes,
|
$themes,
|
||||||
array_map(function ($s) { return ucwords(strtolower(str_replace('-', ' ', $s))); }, $themes)
|
array_map(function ($s) {
|
||||||
|
return ucwords(strtolower(str_replace('-', ' ', $s)));
|
||||||
|
}, $themes)
|
||||||
);
|
);
|
||||||
|
|
||||||
$this->languages = $languages;
|
$this->languages = $languages;
|
||||||
|
|
|
@ -25,7 +25,7 @@ class RuleBasedTagger
|
||||||
/**
|
/**
|
||||||
* Add tags from rules defined by the user.
|
* Add tags from rules defined by the user.
|
||||||
*
|
*
|
||||||
* @param Entry $entry Entry to tag.
|
* @param Entry $entry Entry to tag
|
||||||
*/
|
*/
|
||||||
public function tag(Entry $entry)
|
public function tag(Entry $entry)
|
||||||
{
|
{
|
||||||
|
@ -49,7 +49,7 @@ class RuleBasedTagger
|
||||||
*
|
*
|
||||||
* @param User $user
|
* @param User $user
|
||||||
*
|
*
|
||||||
* @return array<Entry> A list of modified entries.
|
* @return array<Entry> A list of modified entries
|
||||||
*/
|
*/
|
||||||
public function tagAllForUser(User $user)
|
public function tagAllForUser(User $user)
|
||||||
{
|
{
|
||||||
|
@ -75,7 +75,7 @@ class RuleBasedTagger
|
||||||
/**
|
/**
|
||||||
* Fetch a tag.
|
* Fetch a tag.
|
||||||
*
|
*
|
||||||
* @param string $label The tag's label.
|
* @param string $label The tag's label
|
||||||
*
|
*
|
||||||
* @return Tag
|
* @return Tag
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -134,7 +134,8 @@
|
||||||
</fieldset>
|
</fieldset>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{{ form_rest(form.user) }}
|
{{ form_widget(form.user._token) }}
|
||||||
|
{{ form_widget(form.user.save) }}
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<h2>{{ 'config.tab_menu.password'|trans }}</h2>
|
<h2>{{ 'config.tab_menu.password'|trans }}</h2>
|
||||||
|
|
|
@ -158,7 +158,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{{ form_widget(form.user.save, {'attr': {'class': 'btn waves-effect waves-light'}}) }}
|
{{ form_widget(form.user.save, {'attr': {'class': 'btn waves-effect waves-light'}}) }}
|
||||||
{{ form_rest(form.user) }}
|
{{ form_widget(form.user._token) }}
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -28,16 +28,32 @@ class InstallCommandTest extends WallabagCoreTestCase
|
||||||
*
|
*
|
||||||
* http://stackoverflow.com/a/14374832/569101
|
* http://stackoverflow.com/a/14374832/569101
|
||||||
*/
|
*/
|
||||||
$this->markTestSkipped('PostgreSQL spotted: can find a good way to drop current database, skipping.');
|
$this->markTestSkipped('PostgreSQL spotted: can\'t find a good way to drop current database, skipping.');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ensure next tests will have a clean database
|
||||||
|
*/
|
||||||
public static function tearDownAfterClass()
|
public static function tearDownAfterClass()
|
||||||
{
|
{
|
||||||
$application = new Application(static::$kernel);
|
$application = new Application(static::$kernel);
|
||||||
$application->setAutoExit(false);
|
$application->setAutoExit(false);
|
||||||
|
|
||||||
$code = $application->run(new ArrayInput([
|
$application->run(new ArrayInput([
|
||||||
|
'command' => 'doctrine:schema:drop',
|
||||||
|
'--no-interaction' => true,
|
||||||
|
'--force' => true,
|
||||||
|
'--env' => 'test',
|
||||||
|
]), new NullOutput());
|
||||||
|
|
||||||
|
$application->run(new ArrayInput([
|
||||||
|
'command' => 'doctrine:schema:create',
|
||||||
|
'--no-interaction' => true,
|
||||||
|
'--env' => 'test',
|
||||||
|
]), new NullOutput());
|
||||||
|
|
||||||
|
$application->run(new ArrayInput([
|
||||||
'command' => 'doctrine:fixtures:load',
|
'command' => 'doctrine:fixtures:load',
|
||||||
'--no-interaction' => true,
|
'--no-interaction' => true,
|
||||||
'--env' => 'test',
|
'--env' => 'test',
|
||||||
|
|
Loading…
Reference in a new issue