Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-08-19 | respond_to on a per controller basis | Azul | |
If you inherit respond to and call it again in your controller it will not overwrite the previous but add to it. Since we always have some exceptions from the rules it's probably easiest to be explicit in the controllers that require it themselves. | |||
2016-07-12 | bugfix #226:patch instead of put | thea | |
2016-07-07 | Added missing word | luca-marie | |
2016-07-05 | Fix db:migrate and similar tasks | Azul | |
We saw errors from duplicate loading of LocalEmail and LoginFormatValidation. The latter resulted in a crash. In an attempt to ensure all subclasses of Couchrest::Model::Base are loaded Couchrest::Model::Utils::Migrate requires all files in app/models. We have an extension that does the same for the engines. During this process LoginFormatValidation and LocalEmail were autoloaded when 'identity' was required. Afterwards they were required again. It looks like rails' autoload mechanism does not play nicely with require. So to make sure they are not autoloaded first move the concerns and helper classes into the lib directory and require them explicitly. | |||
2016-05-23 | Merge remote-tracking branch 'pr/220' into develop | Azul | |
2016-05-22 | make ticket tests pass without network connection | Azul | |
MX validations relied on network connection. Only using them in production environment now. I want to be able to develop and test when disconnected. | |||
2016-05-20 | include engine tests in default test | Azul | |
2016-05-14 | ensure invalid user ids still render the ticket form | Azul | |
We still have strange urls requested like /pt/users/AnonymousUser.../tickets/new Not sure where they are coming from - but this should make sure we respond with sth. meaningful instead of erroring out. Conflicts: app/views/layouts/_content.html.haml | |||
2016-05-02 | bugfix: test user properly in auto_new_ticket_path | Azul | |
2016-05-02 | upgrade: use bootstrap3 row and col-md-* | Azul | |
2016-05-02 | upgrade: no more underspecified match routes | Azul | |
2016-05-02 | upgrade: remove references to RestClient | Azul | |
CouchRest > 1.2 does not use RestClient anymore. So we should not try to catch its errors. | |||
2016-01-16 | fix ticket display bug | elijah | |
2015-10-05 | add test to payments and subscriptions | claucece | |
2015-10-05 | questions added | claucece | |
2015-10-05 | readme | claucece | |
2015-10-05 | updated readme | claucece | |
2015-10-05 | update to haml, created translations, deleted files | claucece | |
2015-10-05 | add subscriptions | claucece | |
2015-10-05 | add subs_index and start show | claucece | |
2015-10-05 | changed routes and links | claucece | |
2015-10-05 | subscriptions, translation | claucece | |
2015-10-05 | subscriptions, haml and translations | claucece | |
2015-10-05 | added customers, recurring payment and payment_info | claucece | |
2015-10-05 | just played a little | claucece | |
2015-10-05 | correctly set up comments | claucece | |
2015-10-05 | added payment_info, _customer_form, sucess instances | claucece | |
2015-10-05 | add donate button, bitcoin, payment_method | claucece | |
2015-10-05 | implemented the form and the generate | claucece | |
2015-09-30 | Merge pull request #194 from Alster-Hamburgers/feature/invite_code | azul | |
Request for feedback on invite code feature | |||
2015-09-28 | Disable CSRF token verification on ticket creation. | Giovane | |
2015-09-28 | Fix the remaining failures/errors in our tests | ankonym | |
Handing freshly generated invite codes to Factory Girl to make the tests pass | |||
2015-09-28 | Fix several test failures by stubbing invite code validation | ankonym | |
2015-09-28 | Fix test based on actual invite code validation | ankonym | |
2015-08-05 | updated locale files0.7.1version/0.7.1 | elijah | |
2015-06-15 | added CommonLanguages gem | elijah | |
2015-05-22 | fix failing test | elijah | |
2015-04-30 | added support for email notifications of ticket changes | elijah | |
2014-12-15 | bugfix: allow deletion of user's identities via api when user is deleted. ↵ | elijah | |
closes #6550 | |||
2014-12-10 | silently ignore 404 errors when trying to delete all user tickets: the ↵ | elijah | |
tickets db might not yet be initialized. | |||
2014-07-17 | make sure i18n key can be found (cascade) | Azul | |
Also reformated long haml lines some. You can add a linebreak after a comma. | |||
2014-07-14 | clean up and simplify error responses and test code | Azul | |
2014-07-12 | minor: fix typo in load_views | Azul | |
It removed most of the reduce functions... really not what we wanted | |||
2014-07-09 | adopt ticket list test to new behaviour | Azul | |
We completely ingnore the user_id param for non admins now. So if someone tries to show somebody elses tickets they will see their own instead. | |||
2014-07-09 | only use user ticket(s) path for real users | Azul | |
2014-07-09 | minor: cleanup some links | Azul | |
only submit the params that differ from the defaults | |||
2014-07-09 | stay on all tickets view when sorting (#5879) | Azul | |
When an admin sorted the tickets view in a different order it would take them to their own tickets list before | |||
2014-07-09 | minor: remove dummy dependency in engine test_helpers | Azul | |
This was causing problems with zeus | |||
2014-07-05 | make link_to_navigation more generic and reuse it | Azul | |
Use link_to_navigation for all important navigation items. It creates a link in a list item for use with bootstrap. It supports an :active flag and an :icon option in the html_options now. It also translates the label. This way it can be used in a lot of places as the generic navigation link. | |||
2014-07-05 | Enable unblocking handles in identities tab | Azul | |
There's an identities tab now for admins that will allow unblocking blocked handles. It should be easy to expand for aliases and forwards and other types of actions such as editing. |