Shorten feedback url

This commit is contained in:
Dillon
2023-10-04 01:34:45 +08:00
parent a5c1ae14b7
commit 0f7f5f7ab9
@@ -54,7 +54,7 @@ class GenerateFeedbackUrlLogic extends AbstractControllerLogic
$this->canGenerateFeedbackUrl->passes();
$shortUrl = Str::random(20);
$originalText = $request->input('system') . '|' . $request->input('customer_marking'). '|' . $request->input('email'). '|' . $request->input('question_set') . $shortUrl;
$originalText = $request->input('system') . '|' . $request->input('customer_marking'). '|' . $request->input('email'). '|' . $request->input('question_set') . '|' . $shortUrl;
$originalUrl = Crypt::encryptString($originalText);