-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix #64 | Error in activiteiten weergave. * Fix #31 | Support organisatie -> activiteiten logger delete * Fix #71 | Implementatie package attribute * Fix #67 | Paginatie instantie translaties. * Fix #65 | Implementatie changelog * Fix #75 | Button attribute moet vervangen worden door een submit. * Fix #72 | Implementatie class docblocks -> seeders * Fix #69 | Support organisatie -> activiteiten logger store * Fix #70 | Systeem on een ondersteunende organisatie te wijzigen. * Fix #74 | Implementatie class docs -> requests * Fix #77 | Methode voor het zoeken van een ondersteunende organisatie. * Fix #80 | Implementatie PurgeCSS * Fix #82 | Bug in zoek formulier v/d activiteiten logger. * Fix #76 | Implementatie tooltips backend support organisaties
- Loading branch information
Showing
44 changed files
with
74,257 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Changelog | ||
|
||
All notable changes to `Misfits-BE/Kernwapen-Referendum` will be documented in this file | ||
|
||
## 1.0.0-RC2 - 29-01-2018 | ||
|
||
- Fix key length bug in oudere MySQL versies. | ||
- Fix missende queue runner | ||
- Fix #64 | Error in activiteiten weergave. | ||
- Fix #31 | Support organisatie -> activiteiten logger delete | ||
- Fix #71 | Implementatie package attribute | ||
- Fix #67 | Paginatie instantie translaties. | ||
- Fix #65 | Implementatie changelog | ||
- Fix #69 | Support organisatie -> activiteiten logger store | ||
- Fix #70 | Systeem on een ondersteunende organisatie te wijzigen. | ||
- Fix #75 | Button attribute moet vervangen worden door een submit. | ||
- Fix #74 | Implementatie class docs -> requests | ||
- Fix #72 | Implementatie class docblocks -> seeders | ||
- Fix #76 | Implementatie tooltips backend support organisaties | ||
- Fix #77 | Methode voor het zoeken van een ondersteunende organisatie. | ||
- Fix #80 | Implementatie PurgeCSS | ||
- Fix #82 | Bug in zoek formulier v/d activiteiten logger. | ||
|
||
## 1.0.0-RC1 - 26-01-2018 | ||
|
||
- First BETA release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?php | ||
|
||
namespace App\Http\Requests\Backend; | ||
|
||
use Illuminate\Foundation\Http\FormRequest; | ||
|
||
/** | ||
* Backend validator class voor het updaten van een ondersteunende organisatie. | ||
* | ||
* @author Tim Joosten <tim@activisme.be> | ||
* @copyright 2018 Tim Joosten | ||
* @package \App\Http\Requests\Backend | ||
*/ | ||
class OrganizationUpdateValidator extends FormRequest | ||
{ | ||
/** | ||
* Determine if the user is authorized to make this request. | ||
* | ||
* @return bool | ||
*/ | ||
public function authorize(): bool | ||
{ | ||
return auth()->check(); | ||
} | ||
|
||
/** | ||
* Get the validation rules that apply to the request. | ||
* | ||
* @return array | ||
*/ | ||
public function rules(): array | ||
{ | ||
return [ | ||
'link' => 'required|max:255', | ||
'name' => 'required|max:255', | ||
'verantwoordelijke_naam' => 'required|max:255', | ||
'verantwoordelijke_email' => 'required|email', | ||
'telefoon_nr' => 'required|max:255', | ||
]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?php | ||
|
||
namespace App\Http\Requests\Backend; | ||
|
||
use Illuminate\Foundation\Http\FormRequest; | ||
|
||
/** | ||
* Validatie voor de zoek opdrachten in de databank. | ||
* | ||
* @author Tim Joosten <tim@activisme.be> | ||
* @copyright 2018 TIm Joosten | ||
* @package \App\Http\Requests\Backend | ||
*/ | ||
class SearchValidator extends FormRequest | ||
{ | ||
/** | ||
* Determine if the user is authorized to make this request. | ||
* | ||
* @return bool | ||
*/ | ||
public function authorize(): bool | ||
{ | ||
return auth()->check(); | ||
} | ||
|
||
/** | ||
* Get the validation rules that apply to the request. | ||
* | ||
* @return array | ||
*/ | ||
public function rules(): array | ||
{ | ||
return ['term' => 'max:120|required']; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.