annotate .svn/pristine/5a/5a7deda1d3eacb46e12c357098d5d8aa3d1e3bbf.svn-base @ 1441:8d721cac2925 biblio_alt_search_auth

Addresses Bug #763 - patched the User class adding a new scope (name_like), that doesn't use the email address to search for a user.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Fri, 11 Oct 2013 13:49:02 +0100
parents 038ba2d95de8
children
rev   line source
Chris@1296 1 class PopulateEnumerationsPositionName < ActiveRecord::Migration
Chris@1296 2 def up
Chris@1296 3 IssuePriority.compute_position_names
Chris@1296 4 end
Chris@1296 5
Chris@1296 6 def down
Chris@1296 7 IssuePriority.clear_position_names
Chris@1296 8 end
Chris@1296 9 end