remove stripped char from url name

This commit is contained in:
Dylan Knutson
2023-03-30 18:34:45 +09:00
parent 43848c3dd4
commit 798b2e43cb

View File

@@ -74,6 +74,6 @@ class Domain::Fa::User < ReduxApplicationRecord
end
def self.name_to_url_name(name)
name.delete("_").downcase
name.delete("_").delete("!").downcase
end
end