diff --git a/api.js b/api.js index ff47fb7..90b374e 100644 --- a/api.js +++ b/api.js @@ -3,6 +3,7 @@ * Module for handling API requests. * API is able to be called through /api/:apirequest?=arguments * @module api + * @author Bram van der Veen <96aa48@gmail.com> */ //Importing self-written modules. diff --git a/auth.js b/auth.js index 9300146..0d6530f 100644 --- a/auth.js +++ b/auth.js @@ -2,6 +2,7 @@ /** * Module for handling the Authentication in the web application. * @module auth + * @author Bram van der Veen <96aa48@gmail.com> */ //Importing first and third-party modules. diff --git a/configuration.js b/configuration.js index c005c0b..1195c43 100644 --- a/configuration.js +++ b/configuration.js @@ -2,6 +2,7 @@ /** * Module for the return/creating of a settings file/object. * @module configuration + * @author Bram van der Veen <96aa48@gmail.com> */ //Import first-party modules. diff --git a/crypt.js b/crypt.js index fc394f0..7bb88f9 100644 --- a/crypt.js +++ b/crypt.js @@ -2,6 +2,7 @@ /** * Module for encrypting and decrypting strings. * @module crypt + * @author Bram van der Veen <96aa48@gmail.com> */ //Import first-party modules. @@ -34,7 +35,7 @@ function encrypt(str) { /** * Function to decrypt a string. * @param {String} str - String you want to decrypt - * @return {String} The decrypted string. + * @return {String} The decrypted string. */ function decrypt(str) { var decryptArray = []; diff --git a/database.js b/database.js index 1154d69..8a584a7 100644 --- a/database.js +++ b/database.js @@ -3,6 +3,7 @@ * Module for using a database interface * Either local (NeDB) or remote (MongoDB) based on configuration values. * @module database + * @author Bram van der Veen <96aa48@gmail.com> */ //Import first-party modules. diff --git a/lookup.js b/lookup.js index fcb692e..91ee5b4 100644 --- a/lookup.js +++ b/lookup.js @@ -2,6 +2,7 @@ /** * Module for handling lookup requests by the user supplied search query. * @module lookup + * @author Bram van der Veen <96aa48@gmail.com> */ //Importing first-party modules. diff --git a/redirecter.js b/redirecter.js index c5a1bd9..ac9d155 100644 --- a/redirecter.js +++ b/redirecter.js @@ -2,6 +2,7 @@ /** * Module for redirecting the user based on what they typed into search. * @module redirecter + * @author Bram van der Veen <96aa48@gmail.com> */ diff --git a/schedule.js b/schedule.js index 217fd91..7d8151f 100644 --- a/schedule.js +++ b/schedule.js @@ -3,6 +3,7 @@ * Module for parsing downloaded schedule pages into useable/readable JSON objects. * Usually used after a lookup with the supplied information from it. * @module schedule + * @author Bram van der Veen <96aa48@gmail.com> */ //Import first-party modules. diff --git a/spider.js b/spider.js index d8353f2..a257706 100644 --- a/spider.js +++ b/spider.js @@ -3,6 +3,7 @@ * Module/script for getting students, teachers, chambers and groups from the schedule website. * This script needs to be run before using the application, as the website will have no information to run on. * @module spider + * @author Bram van der Veen <96aa48@gmail.com> */ //Import first-party modules. diff --git a/time.js b/time.js index d649896..3c6aeac 100644 --- a/time.js +++ b/time.js @@ -4,6 +4,7 @@ * Used for adding frontend features like showing what hour it currently is or * changing color because the school day is over. * @module time + * @author Bram van der Veen <96aa48@gmail.com> */ //Importing self-written modules. diff --git a/web.js b/web.js index 738ea30..521aa39 100644 --- a/web.js +++ b/web.js @@ -3,6 +3,7 @@ * Module/script for setting up the web frontend and binding all of the modules * together. * @module web + * @author Bram van der Veen <96aa48@gmail.com> */