1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 13:19:39 +02:00

Fix rubocop linting issues in API chat endpoints

- Fix trailing whitespace
- Add missing final newlines
- Fix array bracket spacing
- Auto-corrected all layout issues

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Josh Pigford 2025-06-18 04:36:31 -05:00
parent 94202b2a6b
commit 404066eaa1
7 changed files with 56 additions and 56 deletions

View file

@ -116,7 +116,7 @@ class Api::V1::ChatsControllerTest < ActionDispatch::IntegrationTest
plain_key = ApiKey.generate_secure_key
api_key = @user.api_keys.build(
name: "Test API Key",
scopes: ["read_write"]
scopes: [ "read_write" ]
)
api_key.key = plain_key
api_key.save!