tabletop-companion/app/helpers/application_helper.rb

9 lines
188 B
Ruby
Raw Normal View History

2024-05-26 10:45:10 +00:00
# frozen_string_literal: true
2024-04-13 10:22:40 +00:00
module ApplicationHelper
2024-05-28 19:16:43 +00:00
def generate_slug_for(model:, string:)
# TODO: Need to ensure this is unique for that model
string.parameterize
end
2024-04-13 10:22:40 +00:00
end