summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-10-19Merge pull request #196 from EvyW/developazul
Admin - Ability to enable/disable user
2015-10-13Merge pull request #201 from Alster-Hamburgers/multi-inviteazul
Allow multi-use invite codes
2015-10-12Adjusted the rake task with comments by @azulankonym
Basically made the code a bit prettier :)
2015-10-06Small code cleanup in the rake taskankonym
2015-10-06Cleaned up invite code output for platform testsankonym
This still had some test output that gets in the way of easy printing and a LEAP platform test
2015-10-06Adjust rake task with renamed max_usesankonym
2015-10-06Integrated feedback on multi-invite codesankonym
Removing some superfluous code, mostly, and structuring tests better.
2015-10-02Update rake task to allow generation of multi-use invitesankonym
The rake task now takes a second (optional) argument that sets the number of uses per invite code. If this is omitted, the default number of uses is 1. (This commit also contains some minor code cleanup that removes some stuff that I'd commented out but not removed.)
2015-10-02Allow multi-use invite codesankonym
Introduce a invite_max_uses property to invite codes to allow admins to set a maximum number of uses for invite codes.
2015-10-01identing 2EvyW
2015-10-01Identing first lineEvyW
2015-10-01Merge pull request #200 from Alster-Hamburgers/localizationazul
Add the localization keys for invite_code and password_confirmation
2015-10-01Add the localization keys for invite_code and password confirmationankonym
2015-09-30Merge pull request #194 from Alster-Hamburgers/feature/invite_codeazul
Request for feedback on invite code feature
2015-09-28with out identingEvyW
2015-09-28Disable CSRF token verification on ticket creation.Giovane
2015-09-28Translation changesEvyW
From line 114 to line 120
2015-09-28Add localization labels to signup form and user.en.ymlankonym
Added the necessary labels to allow the localization of the signup form and the labels to users.en.yml for localization
2015-09-28changes style sheets EvyW
removed the three last lines
2015-09-28Make invite code configurableankonym
Through the config param 'invite_required', providers can decide whether users need to provide an invite code upon signup. The default setting is false.
2015-09-28Cleaned up code in invite_code_validator.rbankonym
2015-09-28Removed the view_by__id from invite code testankonym
2015-09-28Fixed the signup bug that wrongly consumes the invite code.Aya Jaff
2015-09-28Fix cucumber tests by passing valid invite codeankonym
2015-09-28Fix the remaining failures/errors in our testsankonym
Handing freshly generated invite codes to Factory Girl to make the tests pass
2015-09-28Fix three unit tests by passing Factory Girl a valid invite codeankonym
The tests were failing because of a hardcoded "testcode" string so during test setup we generate a valid code and pass it to Factory Girl
2015-09-28Fix several test failures by stubbing invite code validationankonym
2015-09-28Separate user and invite code validator testsankonym
2015-09-28Fixes for the invite code validatorankonym
Validation should only happen for new records User invite code was nil for invalid invite codes Adding missing tests
2015-09-28Make sure codes can only be used once, fix validationsankonym
We introduced a count on invite codes to make sure that (at the moment) codes can only be used once. (The code will also allow multi-use codes in the future.) Also, some of our validations weren't validating against the correct data, which is now fixed.
2015-09-28Add rake task for invite code batch generationankonym
2015-09-28assign random invite code when creating new invite codesankonym
2015-09-28Remove change password browser testankonym
Remove the change password test because the change password functionality is currently unused - however, it breaks with the new invite code field in the signup form.
2015-09-28Fix test based on actual invite code validationankonym
2015-09-28Changed invite code query to look for invite_code string instead of idankonym
2015-09-28Add validation of invite code in user object based on codes in couch dbankonym
2015-09-28Add invite code modelankonym
2015-09-28Added an 'invite code' to all the tests for the sign-up form so we have a ↵Aya Jaff
valid user for the tests again
2015-09-28Update submodule srp to 9e1a41733kaeff
2015-09-28Move account form info from srp_js into leap_webkaeff
2015-09-28Adding invite code field to signup with validation for hardcoded invite codeankonym
2015-09-22index changesEvyW
2015-09-22commit user hamlEvyW
2015-09-22Update leap.scssEvyW
2015-09-22Merge branch 'bugfix/find_by_nil' of https://github.com/azul/leap_web into ↵elijah
develop
2015-09-21test users_controller_testEvelyn
2015-09-20fixing translationsEvelyn
2015-09-20spanish translations for user actionsEvelyn
2015-09-20adding ability to disable/enable users by adminEvelyn
2015-09-10couchrest_model 2.0.1 fixes find_by_sth(nil)Azul
This used to return the first record! :scream: This [commit](https://github.com/couchrest/couchrest_model/commit/2c5b76823e94caed4d8cbfbf18cb9e0d58789789) is essential for say User.find_by_login(nil) to NOT return the first record in the database.