Skip to content

Commit 9f726e7

Browse files
authored
Improve instructions for deleting users (intercom#302)
1 parent 510aac7 commit 9f726e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -379,10 +379,10 @@ You can do this using the [intercom-ruby](https://github.com/intercom/intercom-r
379379

380380
```
381381
class User
382-
after_destroy { DeleteFromIntercom.perform_later(self)
382+
after_destroy { DeleteFromIntercomJob.perform_later(self) }
383383
end
384384
385-
class DeleteFromIntercom < ApplicationJob
385+
class DeleteFromIntercomJob < ApplicationJob
386386
def perform(user)
387387
intercom = Intercom::Client.new
388388
user = intercom.users.find(id: user.id)

0 commit comments

Comments
 (0)