class GithubsController < ApplicationController skip_before_action :verify_authenticity_token # After installation callback def show # TODO:: exchange code for a user access token # https://docs.github.com/en/developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps#2-users-are-redirected-back-to-your-site-by-github end # web hooks def create head :no_content end end