aboutsummaryrefslogtreecommitdiffstats
path: root/app
Commit message (Collapse)AuthorAgeLines
...
| * | | RESTful route for destroying a trackLouise Crow2014-12-18-1/+1
| | | |
| * | | RESTful route for clearing a bounce messageLouise Crow2014-12-18-1/+1
| | | |
| * | | RESTful route for bounce messageLouise Crow2014-12-18-1/+1
| | | |
| * | | Use RESTful route for banned user listLouise Crow2014-12-18-3/+3
| | | |
| * | | Use RESTful routes for CRUD admin user actionsLouise Crow2014-12-18-32/+28
| | | |
| * | | Move outgoing message admin actions to RESTful model.Louise Crow2014-12-18-7/+5
| | | |
| * | | Move admin incoming message actions to use RESTful routes.Louise Crow2014-12-18-8/+7
| | | | | | | | | | | | | | | | | | | | So data changing actions require a POST and can be protected against CSRF.
| * | | Move change request actions to use RESTful routes.Louise Crow2014-12-18-7/+7
| | | |
| * | | Use RESTful routing for importing the public bodies csv fileLouise Crow2014-12-18-1/+1
| | | |
| * | | RESTful routing for missing_scheme and mass_tag_addLouise Crow2014-12-18-1/+1
| | | |
| * | | Move destroy action to RESTful routingLouise Crow2014-12-18-2/+1
| | | |
| * | | Move create to RESTful routingLouise Crow2014-12-18-1/+1
| | | |
| * | | Move edit and update to RESTful routingLouise Crow2014-12-18-4/+4
| | | |
| * | | Move new action to use RESTful routing.Louise Crow2014-12-18-3/+3
| | | |
| * | | Move show method to use RESTful routingLouise Crow2014-12-18-10/+10
| | | |
| * | | Use RESTful routing for indexLouise Crow2014-12-18-67/+63
| | | |
| * | | Make downloading a raw email a RESTful routeLouise Crow2014-12-18-27/+28
| | | |
| * | | Make marking an event as a clarification a RESTful routeLouise Crow2014-12-18-17/+25
| | | |
| * | | Make hide a RESTful action accessed via POSTLouise Crow2014-12-12-2/+2
| | | |
| * | | Make show_raw_email a RESTful action via GETLouise Crow2014-12-12-34/+43
| | | | | | | | | | | | | | | | | | | | Move specs that involve receiving email and then viewing the interface to be integration specs, which is what they really are.
| * | | RESTful routing for editing and updating.Louise Crow2014-12-12-4/+4
| | | |
| * | | RESTful routing for editing and updating commentsLouise Crow2014-12-12-33/+45
| | | |
| * | | Move generate_upload_url action to be RESTfulLouise Crow2014-12-12-2/+7
| | | |
| * | | Make move a RESTful actionLouise Crow2014-12-12-4/+3
| | | |
| * | | Use RESTful routing for destroy actionLouise Crow2014-12-12-2/+2
| | | |
| * | | Use RESTful routing for resend actionLouise Crow2014-12-12-33/+34
| | | |
| * | | Use RESTful routing for index and show actionsLouise Crow2014-12-12-35/+30
| | | |
* | | | Merge branch 'admin-public-holiday-interface' into rails-3-developLouise Crow2014-12-18-540/+469
|\ \ \ \
| * | | | Add holidays admin linkLouise Crow2014-12-15-2/+9
| | | | | | | | | | | | | | | | | | | | Use dropdown to group related authority pages.
| * | | | Remove bootstrap libs in favour of using the bootstrap-sass gem.Louise Crow2014-12-15-538/+2
| | | | |
| * | | | Add red outline for admin fields with errorsLouise Crow2014-12-15-0/+4
| | | | |
| * | | | Allow import of holidays from feed or built-in suggestionsLouise Crow2014-12-15-9/+236
| | | | |
| * | | | Add description of the effect of public holidaysLouise Crow2014-12-15-0/+15
| | | | |
| * | | | Add some inline editingLouise Crow2014-12-15-3/+41
| | | | |
| * | | | Add create actionLouise Crow2014-12-15-0/+9
| | | | |
| * | | | Add new actionLouise Crow2014-12-15-0/+18
| | | | |
| * | | | Add basic destroy action.Louise Crow2014-12-15-0/+7
| | | | |
| * | | | Add basic update action.Louise Crow2014-12-15-0/+18
| | | | |
| * | | | Add basic edit actionLouise Crow2014-12-15-0/+49
| | | | |
| * | | | Add index method for listing existing holidaysLouise Crow2014-12-15-0/+71
| | | | |
| * | | | Add validation for presence of day.Louise Crow2014-12-15-0/+2
| | | | |
* | | | | Merge branch 'hotfix/0.20.0.1' into rails-3-developLouise Crow2014-12-18-2/+3
|\ \ \ \ \ | | |_|_|/ | |/| | |
| * | | | Try to avoid n+1 queries, and multiple admin authority queries.0.20.0.1hotfix/0.20.0.1Louise Crow2014-12-18-2/+3
| | | | | | | | | | | | | | | | | | | | Attempting to make the import faster when there are lots of public authorities in the database already
* | | | | Refactor the application of masks and censor rules to messages.Louise Crow2014-12-15-148/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Seems more logical to make this one method that figures out what to do based on file type. Plus, incoming message does so many things, it seemed like having these related methods be separate would make them easier to read and understand. Also, email, mobile and login substitution texts weren't being translated. Finally, I think passing the censor rules and masks as arguments is a first step in some more decoupling of models.
* | | | | Enforce a lifetime on session cookiesLouise Crow2014-12-12-9/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem described in http://seclists.org/fulldisclosure/2013/Sep/145 Pattern taken from https://www.coffeepowered.net/2013/09/26/rails-session-cookies/
* | | | | Remove obsolete 'require' statementLouise Crow2014-12-12-2/+1
| | | | |
* | | | | Only mark email_subject_request as HTML safe when used in email subject.Louise Crow2014-12-12-13/+19
| |_|/ / |/| | | | | | | | | | | It's also used in the web interface and needs to be escaped there.
* | | | Merge branch '2022-fragmented-translation' into rails-3-developGareth Rees2014-12-11-2/+7
|\ \ \ \
| * | | | Improve translation on /details/request/:idGareth Rees2014-12-11-2/+7
| | |/ / | |/| | | | | | | | | | Better to translate the full string
* | | | Unify add annotation <title> and <h1>Gareth Rees2014-12-11-3/+4
| | | | | | | | | | | | | | | | | | | | Use the same msgids so that translators only have to translate one thing.