# frozen_string_literal: true module Maquina class UnauthorizedController < ApplicationController def show render :"401", status: :unauthorized end end end