mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-04-04 05:33:22 -04:00
11 lines
183 B
Ruby
11 lines
183 B
Ruby
class AuthenticatedController < ApplicationController
|
|
before_filter :authenticate_user!
|
|
|
|
before_filter :get_user_bike
|
|
|
|
def get_user_bike
|
|
@bike = current_user.bike
|
|
end
|
|
|
|
end
|