learnerhub_invote/app/controllers/invotes_controller.rb

19 lines
177 B
Ruby

class InvotesController < ApplicationController
def show
end
def create
binding.pry
redis = Redis.new
redis.set()
end
private
def params
end
end