Skip to content

Commit 97fa64f

Browse files
brianmaretemosesokemwa
andauthoredJul 14, 2022
Feat: Winguapps wifi integration (#870)
* frontend for extra auth options Signed-off-by: mosesokemwa <[email protected]> * backend suport for 3rd party auth Signed-off-by: mosesokemwa <[email protected]> * lint error fix Signed-off-by: mosesokemwa <[email protected]> * torii provider updates Signed-off-by: mosesokemwa <[email protected]> * fixed conflicts in yarn frontend file Signed-off-by: mosesokemwa <[email protected]> * changes to email sending process Signed-off-by: mosesokemwa <[email protected]> * Comment out copying of h5p directory from frontend to server * Change name of email templates to use mailgun templates * Fix auth object in email config * Disable submit buttons when form is submitted * Shorten notification time * Refactor send mail function * Uncomment forgot password link * lint fixes * Add check for mailgun api key * Add check for mailgun api key * Testing something * testing something * chore: update h5p standalone package * refactor: move h5p fonts to public folder * chore: update sharp package * Add winguapps endpoint * Add enpoint for receiving token * Add user details to xapi statement * Add socket event handler * Add custom token authenticator * Fix listening for chapter completion event * Check for preauth token in query params * Show popup when user finishes content * Add xapi endpoint * fix lint errors * idColumn property required in Objection.js models * Check for api key in request Co-authored-by: mosesokemwa <[email protected]>
1 parent 567e6c1 commit 97fa64f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+816
-36
lines changed
 

‎.vscode/settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"editor.tabSize": 2,
3-
"editor.formatOnSave": true,
3+
"editor.formatOnSave": false,
44
"editor.formatOnPaste": true,
55
"cSpell.words": [
66
"enduser",

‎frontend/app/adapters/xapi.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import ApplicationAdapter from './application';
2+
3+
export default class XapiAdapter extends ApplicationAdapter {
4+
pathForType() {
5+
return 'xapi';
6+
}
7+
}

0 commit comments

Comments
 (0)