Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-02-25 | Admins cannot update a user. Eventually we will want to allow admins to ↵ | jessib | |
update some user fields. | |||
2013-02-19 | Only check if last email alias is valid if the user has a last email alias. | jessib | |
2013-01-31 | Remove public key if the key is passed as nil, but not otherwise. | jessib | |
There was a weird case with reloading the user in the test if the public key had been unset. | |||
2013-01-29 | A user's public_key is the only attribute they should be able to update via API. | jessib | |
2013-01-29 | Allow PUT API to update user. | jessib | |
2013-01-23 | added unit tests for user presenter | Azul | |
changed the way the presenter works. Will need functional testing | |||
2013-01-23 | make raising not found error less confusing | Azul | |
2013-01-22 | adding json jrd responses to webfinger | Azul | |
2013-01-22 | render 404 if needed | Azul | |
2013-01-22 | some basic webfinger routes, controller, presenters, views | Azul | |
2013-01-18 | Merge remote-tracking branch 'origin/master' into feature/fixed-email-address | Azul | |
Conflicts: users/app/views/emails/_email.html.haml | |||
2013-01-17 | Should be able to create a user when not logged in. | jessib | |
This isn't ready to merge, as there is an issue with logging in as an admin in the test. | |||
2013-01-17 | Merge branch 'master' into feature/tickets_controllers_simplification | jessib | |
Conflicts: users/app/controllers/users_controller.rb | |||
2013-01-17 | Deal with corner case where we don't have authenticated user. Will write a ↵ | jessib | |
test after merging in show view for users. | |||
2013-01-17 | minor fixes to validation workflow | Azul | |
2013-01-15 | For both users and tickets, if the object is not found and the current user ↵ | jessib | |
is an admin, they should see an alert that the object wasn't found, and be redirected to the current controller. If the object isn't found and the current user is not an admin, then we will continue to give an error about no access, so as not to leak information about what IDs do and don't exist. | |||
2013-01-08 | Adding show view for users. | jessib | |
2012-12-20 | render proper tab on update | Azul | |
2012-12-18 | refactor: using tab partials for user editing | Azul | |
2012-12-18 | refactored email_alias creation and validation | Azul | |
using CouchRests user.email_aliases.build so the casted_by method is set in the alias Used this to move the validations into the alias itself. This is where they belong and allows us to render the errors inline along the email field they belong to. | |||
2012-12-18 | display errors on email tab properly | Azul | |
still needs a bit of refactoring in the view | |||
2012-12-17 | activate email tab after changing email settings | Azul | |
2012-12-17 | enabled destroying email aliases - no ajax yet. | Azul | |
2012-12-17 | Merge branch 'feature/fixing-signup-and-login-issues' | Azul | |
2012-12-13 | Merge branch 'master' into develop | Azul | |
Conflicts: users/test/unit/user_test.rb | |||
2012-12-12 | Merge branch 'master' into develop | Azul | |
2012-12-11 | make sure can login twice | Azul | |
2012-12-10 | email format validations | Azul | |
2012-12-10 | actually allow adding email aliases | Azul | |
2012-12-09 | basic form added to user settings, simple model created | Azul | |
2012-12-09 | first steps towards email aliases | Azul | |
* unit tests draft * controller draft | |||
2012-12-08 | serve api version 1 in /1/ | Azul | |
Just a very simple start for now. Do we want to use the api for the secure remote password auth from js? | |||
2012-12-07 | Merge branch 'master' into help_develop | jessib | |
Conflicts: app/views/layouts/application.html.haml help/app/controllers/tickets_controller.rb help/test/functional/tickets_controller_test.rb users/test/support/stub_record_helper.rb | |||
2012-12-07 | fixed signup and removed flash that was not getting displayed | Azul | |
I also tried flash.keep(:notice) but that did not help - not sure how to keep the flash until the root url has rendered. | |||
2012-12-07 | first stub at displaying success messages | Azul | |
2012-12-07 | using normal requests for user updates except password | Azul | |
password requires ajax for secure remote password to work | |||
2012-12-03 | enable users to cancel their account | Azul | |
2012-12-01 | Merge branch 'develop' into help_develop | Azul | |
2012-11-28 | admins can destroy users | Azul | |
I changed the permissions a little to be more consistent. Now: * admins can edit users * users can destroy themselves. There's no ui for either of them but theoretically they could. Not sure this is what we want though. | |||
2012-11-26 | Merge branch 'develop' into help_develop | jessib | |
2012-11-26 | Merge branch 'develop' into help_develop | jessib | |
Conflicts: users/app/views/sessions/_nav.html.haml | |||
2012-11-26 | basic typeahead and user querying working | Azul | |
2012-11-26 | basic users index with typeahead search | Azul | |
2012-11-26 | added admin menu and user index action | Azul | |
2012-11-26 | simplified controller and adjusted tests | Azul | |
Also added #assert_json_error to tests. | |||
2012-11-23 | identify user by id so rerendering the form does not use new invalid login | Azul | |
2012-11-23 | test editing user settings | Azul | |
2012-11-22 | basic user edit form and actions | Azul | |
2012-11-22 | beautify login workflow | Azul | |
* translating error messages * not caching login and password in js anymore * catching non responses | |||
2012-11-22 | using client side validations for login | Azul | |