-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
72 changed files
with
8,048 additions
and
2,696 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
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,3 @@ | ||
# All pull reviews to master must be reveiwed by project manager | ||
* @tydingsl | ||
* @Evsus |
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,15 @@ | ||
{ | ||
"tagname-lowercase": true, | ||
"attr-lowercase": true, | ||
"attr-value-double-quotes": true, | ||
"tag-pair": true, | ||
"id-unique": true, | ||
"src-not-empty": true, | ||
"attr-no-duplication": true, | ||
"title-require": true, | ||
"alt-require": true, | ||
"csslint": { | ||
"display-property-grouping": true, | ||
"known-properties": true | ||
} | ||
} |
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,15 @@ | ||
{ | ||
"check-coverage": true, | ||
"skip-full": true, | ||
"lines": 95, | ||
"statements": 95, | ||
"functions": 95, | ||
"branches": 95, | ||
"exclude": [ | ||
"test/**/*.js", | ||
"api/controllers/RestController.js" | ||
], | ||
"reporter": [ | ||
"lcov" | ||
] | ||
} |
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,2 @@ | ||
language: node_js | ||
node_js: "11" |
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# Attendance Tracking | ||
|
||
For the Naylor Learning Center | ||
|
||
[![Build Status](https://travis-ci.org/dewv/nlcAttendance.svg?branch=master)](https://travis-ci.org/dewv/nlcAttendance) |
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 @@ | ||
// Document symbols for jsdoc | ||
|
||
/** | ||
* Represents a set of structured data, called records. | ||
* @interface Model | ||
* @see {@link https://sailsjs.com/documentation/concepts/models-and-orm/models|Sails Concepts} | ||
* @see {@link https://sailsjs.com/documentation/reference/waterline-orm/models|Sails Reference} | ||
*/ | ||
|
||
/** | ||
* A uniquely identifiable object that corresponds 1-to-1 with a physical database entry. | ||
* @interface Record | ||
* @see {@link https://sailsjs.com/documentation/concepts/models-and-orm/records|Sails Concepts} | ||
* @see {@link https://sailsjs.com/documentation/reference/waterline-orm/records|Sails Reference} | ||
*/ | ||
|
||
/** | ||
* A dictionary of request-handling actions. | ||
* @interface Controller | ||
* @see {@link https://sailsjs.com/documentation/concepts/actions-and-controllers#?controllers|Sails Concepts} | ||
*/ | ||
|
||
/** | ||
* Represents the HTTP request, with properties for the query string, parameters, body, HTTP headers, and so on. | ||
* @external Request | ||
* @see {@link https://sailsjs.com/documentation/reference/request-req|Sails Reference} | ||
* @see {@link http://expressjs.com/en/4x/api.html#req|Express API Reference} | ||
*/ | ||
|
||
/** | ||
* Represents the HTTP response that an Express app sends when it gets an HTTP request. | ||
* @external Response | ||
* @see {@link https://sailsjs.com/documentation/reference/response-res|Sails Reference} | ||
* @see {@link http://expressjs.com/en/4x/api.html#res|Express API Reference} | ||
*/ |
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.