20 lines
251 B
Ruby
20 lines
251 B
Ruby
class FavoritesController < ApplicationController
|
|
|
|
def people
|
|
@favoritePeople = FavoritePerson.where('user_id': current_user.id)
|
|
@host = 'https://tiss.tuwien.ac.at'
|
|
end
|
|
|
|
def courses
|
|
|
|
end
|
|
|
|
def theses
|
|
|
|
end
|
|
|
|
def projects
|
|
|
|
end
|
|
end
|