Team's part #84
Merged
maxime.batista
merged 28 commits from team/completing
into master
2 years ago
Loading…
Reference in new issue
There is no content yet.
Delete Branch 'team/completing'
Deleting a branch is permanent. It CANNOT be undone. Continue?
This pull request adds the members to the team with the possibilitie to add or remove a player or quit the team. It means that this PR implements the account within the team's part of the application.
Moreover some bugs has been fixed.
The view of the team has been translated to react.js
This PR also adds the edit and delete of a team.
please respect naming conventions
#mainDiv {
please name your html identifier and classes in
kebab-case
(with a-
between each words, no capital letters)height: 100%;
}
header {
Avoid applying styles on html components directly.
Prefer the use of classes instead, because you are applying those changes on all
<header></header>
components, which can lead to unwanted styles}
return App::runAction($basePath . '/login', $match['target'], $match['params'], $session);
return App::runAction('/login', $match['target'], $match['params'], $session);
why did you removed
$basePath
here ? please revert it to the original line :return ViewHttpResponse::twig('error.html.twig', [
'failures' => [ValidationFail::unauthorized("Vous n'avez pas accès à cette équipe.")],
], HttpCodes::FORBIDDEN);
} else {
this 'else' is useless since the if statement will always return if executed :
example
can become :
1efec8c0d9
to4298230938
2 years ago3a437a7ad1
into master 2 years agoReviewers
3a437a7ad1
.