2012-08-17 14:40:57 +01:00
|
|
|
# -*- encoding : utf-8 -*-
|
|
|
|
class Api::V1::RepositoriesController < Api::V1::BaseController
|
2012-09-26 18:15:11 +01:00
|
|
|
|
|
|
|
before_filter :authenticate_user!
|
|
|
|
skip_before_filter :authenticate_user!, :only => [:show] if APP_CONFIG['anonymous_access']
|
2012-08-17 14:40:57 +01:00
|
|
|
|
|
|
|
load_and_authorize_resource :repository, :through => :platform, :shallow => true
|
2012-09-26 18:15:11 +01:00
|
|
|
|
|
|
|
def show
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2012-08-17 14:40:57 +01:00
|
|
|
end
|