Skip to content

Commit

Permalink
fix(abstractdatacontroller): fix parameter that should not be optional
Browse files Browse the repository at this point in the history
  • Loading branch information
Itee committed Nov 3, 2020
1 parent 7c7cf5e commit 66d2949
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/controllers/TAbstractDataController.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class TAbstractDataController extends TAbstractResponder {
* @param {external:Others~DatabaseDriver} parameters.driver Any official database driver that will be used internally by inherited class
* @param {boolean} [parameters.useNext=false] A boolean flag to indicate that this instance should use "next()" function instead of return response to client.
*/
constructor ( parameters = {} ) {
constructor ( parameters ) {

const _parameters = {
...{
Expand Down

0 comments on commit 66d2949

Please sign in to comment.