goofansu/wechat-starter

View on GitHub
app/controllers/home_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class HomeController < ApplicationController
  before_action :authenticate_user!

  # to allow using wechat, wechat_oauth2 in controller and wechat_config_js in view
  wechat_api

  def index
  end
end