Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
1a80a3d
Merge pull request #110 from reactivepixel/release
reactivepixel Feb 20, 2018
405fbf4
Fixed debug mode Fixed mysql Host
reactivepixel Mar 6, 2018
3f3976f
added silent to the npm i
reactivepixel Mar 6, 2018
2477857
Update README
brennondenny May 2, 2018
0e5fa06
Merge pull request #141 from brennondenny/dev
reactivepixel May 2, 2018
343e55b
working on the controller for the new features
May 7, 2018
b73bfbb
working on the message system for new users
May 8, 2018
0d94600
working on reversing an issue
May 8, 2018
d01ca4b
Added welcome message and upgrade discord.js
reactivepixel Aug 22, 2018
9323298
passing linting
reactivepixel Aug 22, 2018
3886d7f
Merge pull request #184 from reactivepixel/OfficialWelcome
reactivepixel Aug 22, 2018
73578fe
updated with new Varsity and JV role protection
reactivepixel Oct 19, 2018
6e1dcd2
conform to styleguide
reactivepixel Oct 19, 2018
9dcc9fb
duplicated roles over
reactivepixel Oct 19, 2018
647c484
pattern matching added to case
reactivepixel Oct 19, 2018
3e72ff1
adjusted for spelling
reactivepixel Oct 19, 2018
60855cf
added crew to roles
reactivepixel Oct 19, 2018
c9de05c
added alumni
reactivepixel Oct 19, 2018
cbca454
added restrictions to all casing
reactivepixel Oct 19, 2018
7dfbd0a
Upgraded to newer version of node
reactivepixel Dec 10, 2018
be78f75
updated sequelize
reactivepixel Aug 21, 2019
ede44a3
updated circleci
reactivepixel Aug 21, 2019
c612b81
build for heroku
reactivepixel Aug 21, 2019
d98bb3c
fixed start
reactivepixel Aug 21, 2019
07889dc
lowered debug threshold for email
reactivepixel Oct 18, 2019
9692559
updatre to nodemailer
reactivepixel Oct 18, 2019
110eb92
added more nodemailer transport context
reactivepixel Oct 18, 2019
46a312a
expanded allowed email
reactivepixel Oct 18, 2019
7c6b422
revised timeout message
reactivepixel Oct 18, 2019
8e62821
restructured msgs
reactivepixel Oct 18, 2019
5018c43
better messages
reactivepixel Oct 18, 2019
7cb58f9
Merge pull request #189 from reactivepixel/herokuBuilder
reactivepixel Oct 18, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
expanded allowed email
  • Loading branch information
reactivepixel committed Oct 18, 2019
commit 46a312af6e0a22cc67a990b8b5a2631c42743516
2 changes: 1 addition & 1 deletion bot/controllers/verify.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class VerifyController extends BaseController {
verifyAction() {
const { message } = this;
const targetVerifiedRoleName = 'Crew';
const validDomains = ['student.fullsail.edu', 'fullsail.edu', 'fullsail.com'];
const validDomains = ['student.fullsail.edu', 'fullsail.edu', 'fullsail.com', 'alumni.fullsail.edu', 'staff.fullsail.com', 'staff.fullsail.edu'];
const timeoutInMiliseconds = 600000;
const email = message.parsed[1].toLowerCase();
const emailDomain = email.split('@').pop();
Expand Down
4 changes: 2 additions & 2 deletions db/migrations/20170920201305-create-member.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ module.exports = {
verified: {
type: Sequelize.BOOLEAN
},
createdAt: {
created_at: {
allowNull: false,
type: Sequelize.DATE,
defaultValue: Sequelize.fn('now'),
},
updatedAt: {
updated_at: {
allowNull: false,
type: Sequelize.DATE,
defaultValue: Sequelize.fn('now'),
Expand Down