]> gitweb.michael.orlitzky.com - mailshears.git/blobdiff - lib/rm/plugins/agendav.rb
Replace 'account' with 'user' everywhere.
[mailshears.git] / lib / rm / plugins / agendav.rb
index 2b2952f01a9254e01331b7a663d632762b8eb0ea..0f4e790f6f4007f124eed570db7d52651f767d8a 100644 (file)
@@ -9,10 +9,10 @@ class AgendavRm
   include RmPlugin
 
 
-  def delete_account(account)
+  def delete_user(user)
     # Delete the given username and any records in other tables
     # belonging to it.
-    raise NonexistentAccountError.new(account) if not user_exists(account)
+    raise NonexistentUserError.new(user) if not user_exists(user)
 
     sql_queries = ['DELETE FROM prefs WHERE username = $1;']
     sql_queries << 'DELETE FROM shared WHERE user_from = $1;'
@@ -27,7 +27,7 @@ class AgendavRm
                                   @db_pass)
 
       sql_queries.each do |sql_query|
-        connection.query(sql_query, [account])
+        connection.query(sql_query, [user])
       end
 
       connection.close()