Skip to content

Commit

Permalink
adds qrcode track outcome
Browse files Browse the repository at this point in the history
  • Loading branch information
yordadev committed Aug 22, 2024
1 parent d19d047 commit 94472f8
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Services/ClickService.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ class ClickService

public static int $CLIENT_INITIATED_ROUTING = 8;

public static int $CLIENT_INITIATED_QRCODE = 9;

/**
* @throws ClickServiceException
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?php

use Illuminate\Database\Migrations\Migration;

return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
DB::table('short_url_outcomes')
->insert([
[
'id' => 9,
'name' => 'client_scanned_qrcode',
'alias' => 'The short url\'s QR code was scanned.',
],
]);
}
};

0 comments on commit 94472f8

Please sign in to comment.