assets self-hosted

This commit is contained in:
Benjamin Takats
2023-01-20 19:23:55 +01:00
parent adcb8f2fd3
commit 3d2a9a5c73

View File

@@ -40,15 +40,17 @@ class LibraryItemObserver
url()->route('article.view', url()->route('article.view',
['libraryItem' => $libraryItem->slug]), ['libraryItem' => $libraryItem->slug]),
); );
$this->postTweet($text);
} else { } else {
$text = sprintf("Ein neuer News-Artikel wurde verfasst:\n\n%s\n\n%s\n\n#Bitcoin #News #Einundzwanzig #gesundesgeld", $text = sprintf("Ein neuer News-Artikel wurde verfasst:\n\n%s\n\n%s\n\n#Bitcoin #News #Einundzwanzig #gesundesgeld",
$libraryItemName, $libraryItemName,
url()->route('article.view', url()->route('article.view',
['libraryItem' => $libraryItem->slug]), ['libraryItem' => $libraryItem->slug]),
); );
}
$this->postTweet($text); //$this->postTweet($text);
}
} }
} }