Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
** Hellotext for WooCommerce Changelog **

2025-04-10 - version 1.2.2

* The generated Hellotext API key has read/write access to allow Hellotext to subscribe to webhooks.

2025-04-9 - version 1.2.1

* Passes the shop's currency to Hellotext API when the plugin is installed.
Expand Down
2 changes: 1 addition & 1 deletion src/Events/AppInstalled.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function hellotext_activate () {
$wpdb->insert($api_keys_table, [
'user_id' => get_current_user_id(),
'description' => 'Hellotext',
'permissions' => 'read',
'permissions' => 'read_write',
'consumer_key' => wc_api_hash($conusmer_key),
'consumer_secret' => $api_keys->consumer_secret,
'truncated_key' => substr($api_keys->consumer_key, -7),
Expand Down