tabletop-companion/app/helpers/application_helper.rb

9 lines
188 B
Ruby

# frozen_string_literal: true
module ApplicationHelper
def generate_slug_for(model:, string:)
# TODO: Need to ensure this is unique for that model
string.parameterize
end
end