Sha256: 169e8ac4d3224cb120955276fbaffba1cbdcdf37db1006665bbf13f84cf1e4bb
Contents?: true
Size: 1.07 KB
Versions: 3
Compression:
Stored size: 1.07 KB
Contents
require 'pp' module Example class App < Sinatra::Base enable :sessions set :github_options, { :scopes => "user", :secret => ENV['GITHUB_CLIENT_SECRET'], :client_id => ENV['GITHUB_CLIENT_ID'], } register Sinatra::Auth::Github helpers do def repos github_request("user/repos") end end get '/' do authenticate! "Hello there, #{github_user.login}!" end get '/orgs/:id' do github_organization_authenticate!(params['id']) "Hello There, #{github_user.name}! You have access to the #{params['id']} organization." end get '/publicized_orgs/:id' do github_publicized_organization_authenticate!(params['id']) "Hello There, #{github_user.name}! You are publicly a member of the #{params['id']} organization." end get '/teams/:id' do github_team_authenticate!(params['id']) "Hello There, #{github_user.name}! You have access to the #{params['id']} team." end get '/logout' do logout! redirect 'https://github.com' end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
sinatra_auth_github-1.0.0 | spec/app.rb |
sinatra_auth_github-0.14.1 | spec/app.rb |
sinatra_auth_github-0.14.0 | spec/app.rb |