summaryrefslogtreecommitdiff
path: root/help/app
AgeCommit message (Collapse)Author
2013-01-17Merge branch 'master' into feature/tickets_controllers_simplificationjessib
Conflicts: users/app/controllers/users_controller.rb
2013-01-17Merge branch 'master' into feature/unauthenticated_ticketsjessib
Conflicts: help/app/views/tickets/_comment.html.haml help/app/views/tickets/_new_comment.html.haml
2013-01-15For 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-15Refactoring of tickets controller to fetch the ticket in a before filter for ↵jessib
relevant actions.
2013-01-15Show different ticket characteristics when viewing the users versus when ↵jessib
listing the tickets. Give a message if a user has no tickets.
2013-01-14Use partials for displaying details shown when viewing a user. Some of these ↵jessib
partials have specific CSS for another use, so we will likely want to tweak this.
2013-01-14Some fixes to the how we keep track of information about users associated ↵jessib
with a ticket.
2013-01-14tickets controller tests passingAzul
2013-01-07Ticket comments can be privatejessib
2013-01-03Removed unnecessary comment.jessib
2013-01-03Merge pull request #11 from leapcode/feature/ticket-client-side-validationsjessib
Client-side validations, including only validating email address format ...
2013-01-03Merge pull request #9 from leapcode/feature/read-design-from-js-filesazul
moving the js for view definitions into separate files
2012-12-31remove commented-out lines.jessib
2012-12-31Small CSS tweakjessib
2012-12-31Client-side validations, including only validating email address format if ↵jessib
something is input for email address.
2012-12-24Link to edit page (as show doesn't now exist, and not clear if we will want ↵jessib
it) of user who created ticket.
2012-12-24Rough functionality for unauthenticated tickets.jessib
2012-12-22moving the js for view definitions into separate filesAzul
This way we get syntax highlighting and so on.
2012-12-21Still much to do, but improvements to CSS.jessib
2012-12-20Slight tweaks to tickets controller.jessib
Only non-comment change is that we will keep an unauthenticated user looking at the same ticket if they have closed it (rather than redirecting to index which they will not be able to access.)
2012-12-20Define ascending method in CouchRest::Model::Designs::View so we can call ↵jessib
the order either way.
2012-12-19Some cleanup of codejessib
2012-12-18Merge branch 'master' into feature/tickets-refactorjessib
2012-12-18Minor CSS improvement using bootstrap.jessib
2012-12-18Refactoring of code to filter/order tickets.jessib
2012-12-18Merge branch 'develop'Azul
2012-12-17Some refactoring of ticket creation/editing.jessib
2012-12-17Removing references to pjax.jessib
2012-12-12Refactoring of ticket displaying/editing.jessib
2012-12-11Start to using x-editable to have title editable.jessib
2012-12-11Playing around with using x-editable, which isn't yet working.jessib
2012-12-07Added reduce functions, so pagination should now work correctly. This also ↵jessib
removes the need for .all call in some tests.
2012-12-07Merge branch 'master' into help_developjessib
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-04Testing of functionality to retrieve tickets.jessib
2012-12-03Ticket sorting functionality. Needs to be refactored, but works.jessib
2012-12-03make tests pass on an empty dbAzul
2012-11-29Not yet done, but more sophisticated and refactored ticket filtering. Still ↵jessib
have to do more, including allowing user to pick sort order.
2012-11-27fixed some small issues and the tests except oneAzul
The one remaining is failing because we still build an Array for the admin tickets. Needs to be implemented so I am leaving that test as is.
2012-11-27first attempts to map commentsAzul
2012-11-27moved ticket fetching logic from controller to modelAzul
2012-11-27fixed typoAzul
2012-11-27check for logged_in? in before filter - one less case to coverAzul
2012-11-27bunch of refactoring for the ticket indexAzul
* using different partials for different parts of the view * using render @tickets.all to iterate over the tickets. #all is necessary because of CouchRest Model * using helpers for easier querying for the open_status and admin_status params * using helper for avoiding duplication when linking to status
2012-11-26Put tickets in table. This display is still very rough.jessib
2012-11-26adding space to comment line.jessib
2012-11-21Playing around with pagination, and ways to filter/order ticket results.jessib
2012-11-20minor: stacking the pills and making their titles have similar lengthAzul
2012-11-16Rough start to modeling tickets view after the issues view in github (so ↵jessib
something like https://github.com/spree/spree/issues ), using bootstrap for display. Still want to use pjax, and have more functionality to add: searching, sorting, pagination, etc..
2012-11-14Improvements to functional ticket tests.jessib
2012-11-12Some test improvements.jessib