Guest User

Untitled

a guest
May 25th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. class MembershipsController < ApplicationController
  2.  
  3. auto_complete_for :university, :name
  4. auto_complete_for :organization, :name, :conditions => ['university_id = ?', @current_user.university.id]
  5.  
  6. def new
  7. render(:text => @current_user.university.id)
  8. end
  9.  
  10. def show
  11. end
  12. end
Add Comment
Please, Sign In to add comment