Skip to content

Commit

Permalink
Added TipGroup Feature
Browse files Browse the repository at this point in the history
Reworked Acceptancetests
  • Loading branch information
timohund committed Sep 15, 2015
1 parent a5a9714 commit 879b0f8
Show file tree
Hide file tree
Showing 45 changed files with 6,107 additions and 2,236 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ app/cache/*
app/logs/*
bin/*
tests/_log/*
web/*
2 changes: 1 addition & 1 deletion app/Resources/views/home.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@

{% if is_granted('ROLE_USER') %}
<li>
<a href="/logout" class="animate">Logout</a>
<a href="/logout" class="animate" id="logout">Logout</a>
</li>
{% endif %}
</ul>
Expand Down
8 changes: 6 additions & 2 deletions app/Resources/views/subpage.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,14 @@
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Mein Account <span class="caret"></span></a>
<ul class="dropdown-menu">
<li>
<a href="{{ path('fos_user_security_logout') }}" class="animate">Logout</a>
<a href="{{ path('ts_superkicker_tipgroup_edit') }}" id="tipgroups" class="animate">Gruppen</a>
</li>

<li>
<a href="{{ path('fos_user_change_password') }}" id="change_password">Passwort ändern</a>
</li>
<li>
<a href="{{ path('fos_user_change_password') }}">Passwort ändern</a>
<a href="{{ path('fos_user_security_logout') }}" class="animate" id="logout">Logout</a>
</li>
</ul>
</li>
Expand Down
2 changes: 1 addition & 1 deletion app/SymfonyRequirements.php
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ function_exists('posix_isatty'),
}

$this->addRecommendation(
class_exists('Locale'),
extension_loaded('intl'),
'intl extension should be available',
'Install and enable the <strong>intl</strong> extension (used for validators).'
);
Expand Down
4 changes: 2 additions & 2 deletions app/check.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@
}

if ($checkPassed) {
echo_block('success', 'OK', 'Your system is ready to run Symfony2 projects', true);
echo_block('success', 'OK', 'Your system is ready to run Symfony2 projects');
} else {
echo_block('error', 'ERROR', 'Your system is not ready to run Symfony2 projects', true);
echo_block('error', 'ERROR', 'Your system is not ready to run Symfony2 projects');

echo_title('Fix the following mandatory requirements', 'red');

Expand Down
4 changes: 3 additions & 1 deletion app/config/parameters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,6 @@ parameters:
facebook_client_id: dsdsds
facebook_client_secret: sasasa
google_client_id: sasasa
google_client_secret: sasasa
google_client_secret: sasasa
twitter_client_id: sasasa
twitter_client_secret: sasasa
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"minimum-stability": "dev",
"name": "ts/superkicker",
"license": "MIT",
"type": "project",
Expand Down Expand Up @@ -33,8 +34,8 @@
"sebastian/phpcpd": "*",
"phploc/phploc": "*",
"squizlabs/php_codesniffer": "1.*",
"phpunit/phpunit": "3.7.*",
"codeception/codeception": "*"
"phpunit/phpunit": "*",
"codeception/codeception": "2.0.15"
},
"scripts": {
"post-root-package-install": [
Expand Down
Loading

0 comments on commit 879b0f8

Please sign in to comment.