Some initial attempts at setting up delete and edit functions

This commit is contained in:
James Dinkel 2025-08-30 01:29:28 -04:00
parent 5c2466dfaf
commit 517bb5344d
3 changed files with 20 additions and 4 deletions

View file

@ -17,8 +17,4 @@ class Assistant < Sequel::Model
def self.find_by_name(name)
where(name: name).first
end
def self.active
where(active: true)
end
end