5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-05 21:35:46 +00:00
panel/lib/sutty/models/usuaria.rb

11 lines
182 B
Ruby
Raw Permalink Normal View History

2017-09-25 22:35:06 +00:00
# frozen_string_literal: true
module Sutty
# Una usuaria de Sutty
class Usuaria < OpenStruct
def self.find(username)
Usuaria.new(username: username)
end
end
end