Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Neff <benjamin@coding4coffee.ch>2016-08-11 23:01:34 +0300
committerBenjamin Neff <benjamin@coding4coffee.ch>2016-08-13 02:47:27 +0300
commit66b7b7e27a6c7e00c3de536fa9f3a113910b6baf (patch)
tree6a10b3f9de8b0a995a444b4f977a0dd6dd8310b1 /app/workers
parent6cf1cd5d7657e58eb93e18df8576978f403ae8a2 (diff)
Cleanup legacy invitations from code
Fixes #5116
Diffstat (limited to 'app/workers')
-rw-r--r--app/workers/resend_invitation.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/app/workers/resend_invitation.rb b/app/workers/resend_invitation.rb
deleted file mode 100644
index 5b698a28d..000000000
--- a/app/workers/resend_invitation.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright (c) 2010-2011, Diaspora Inc. This file is
-# licensed under the Affero General Public License version 3 or later. See
-# the COPYRIGHT file.
-
-
-module Workers
- class ResendInvitation < Base
- sidekiq_options queue: :low
-
- def perform(invitation_id)
- inv = Invitation.find(invitation_id)
- inv.resend
- end
- end
-end