Skip to content

Commit

Permalink
(Update) System Messages 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
HDVinnie committed Feb 10, 2019
1 parent 79c7632 commit efe6d51
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/Console/Commands/AutoGraveyard.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public function handle()
$appurl = config('app.url');

$this->chat->systemMessage(
":robot: [b][color=#fb9776]System[/color][/b] : Ladies and Gents, [url={$appurl}/{$user->username}.{$user->id}]{$user->username}[/url] has successfully resurrected [url={$appurl}/torrents/{$torrent->slug}.{$torrent->id}]{$torrent->name}[/url]. :zombie:"
"Ladies and Gents, [url={$appurl}/{$user->username}.{$user->id}]{$user->username}[/url] has successfully resurrected [url={$appurl}/torrents/{$torrent->slug}.{$torrent->id}]{$torrent->name}[/url]. :zombie:"
);

// Send Private Message
Expand Down
2 changes: 1 addition & 1 deletion app/Console/Commands/AutoRecycleClaimedTorrentRequests.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public function handle()
if ($requestClaim) {
$tr_url = hrefRequest($torrentRequest);
$this->chat->systemMessage(
":robot: [b][color=#fb9776]System[/color][/b] : [url={$tr_url}]{$torrentRequest->name}[/url] claim has been reset due to not being filled within 7 days."
"[url={$tr_url}]{$torrentRequest->name}[/url] claim has been reset due to not being filled within 7 days."
);

$requestClaim->delete();
Expand Down
2 changes: 1 addition & 1 deletion app/Console/Commands/AutoRemoveFeaturedTorrent.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public function handle()
$appurl = config('app.url');

$this->chat->systemMessage(
":robot: [b][color=#fb9776]System[/color][/b] : Ladies and Gents, [url={$appurl}/torrents/{$torrent->slug}.{$torrent->id}]{$torrent->name}[/url] is no longer featured. :poop:"
"Ladies and Gents, [url={$appurl}/torrents/{$torrent->slug}.{$torrent->id}]{$torrent->name}[/url] is no longer featured. :poop:"
);

// Delete The Record From DB
Expand Down

0 comments on commit efe6d51

Please sign in to comment.