-
- Downloads
Issue #3505245 by scott_euser: Drupal 11 support, test coverage
parent
ace7bf76
No related branches found
No related tags found
Showing
- .cspell-project-words.txt 11 additions, 0 deletions.cspell-project-words.txt
- ai_auto_reference.info.yml 1 addition, 1 deletionai_auto_reference.info.yml
- ai_auto_reference.install 47 additions, 1 deletionai_auto_reference.install
- ai_auto_reference.module 5 additions, 2 deletionsai_auto_reference.module
- assets/css/ai-auto-reference.css 3 additions, 1 deletionassets/css/ai-auto-reference.css
- composer.json 20 additions, 17 deletionscomposer.json
- config/install/ai_auto_reference.settings.yml 1 addition, 1 deletionconfig/install/ai_auto_reference.settings.yml
- config/schema/ai_auto_reference.entity_display.schema.yml 21 additions, 0 deletionsconfig/schema/ai_auto_reference.entity_display.schema.yml
- config/schema/ai_auto_reference.schema.yml 3 additions, 1 deletionconfig/schema/ai_auto_reference.schema.yml
- src/AiReferenceGenerator.php 10 additions, 7 deletionssrc/AiReferenceGenerator.php
- src/Batch/AiReferenceBatch.php 1 addition, 1 deletionsrc/Batch/AiReferenceBatch.php
- src/Form/AutoReferenceApplyForm.php 2 additions, 2 deletionssrc/Form/AutoReferenceApplyForm.php
- src/Form/AutoReferenceDeleteForm.php 8 additions, 7 deletionssrc/Form/AutoReferenceDeleteForm.php
- src/Form/AutoReferenceEditForm.php 12 additions, 12 deletionssrc/Form/AutoReferenceEditForm.php
- src/Form/EntityBundleSettingsForm.php 7 additions, 8 deletionssrc/Form/EntityBundleSettingsForm.php
- src/Form/SettingsForm.php 3 additions, 3 deletionssrc/Form/SettingsForm.php
- tests/src/Functional/AiAutoReferenceUiTest.php 260 additions, 0 deletionstests/src/Functional/AiAutoReferenceUiTest.php
.cspell-project-words.txt
0 → 100644
{ | ||
"name": "drupal/ai_auto_reference", | ||
"description": "Automatically sets or suggests references to other content entities in the site.", | ||
"keywords": ["openai", "GPT-3", "GPT-4", "content generation", "AI content", "gpt", "content moderation"], | ||
"type": "drupal-module", | ||
"license": "GPL-2.0-or-later", | ||
"authors": [ | ||
{ | ||
"name": "Scott Euser", | ||
"homepage": "https://scotteuser.com", | ||
"role": "Maintainer" | ||
}, | ||
{ | ||
"name": "Andrii Sakhaniuk", | ||
"homepage": "https://dev-branch.com", | ||
"role": "Maintainer" | ||
} | ||
] | ||
"name": "drupal/ai_auto_reference", | ||
"description": "Automatically sets or suggests references to other content entities in the site.", | ||
"keywords": ["openai", "GPT-3", "GPT-4", "content generation", "AI content", "gpt", "content moderation"], | ||
"type": "drupal-module", | ||
"license": "GPL-2.0-or-later", | ||
"require": { | ||
"drupal/ai": "^1.0.4" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Scott Euser", | ||
"homepage": "https://scotteuser.com", | ||
"role": "Maintainer" | ||
}, | ||
{ | ||
"name": "Andrii Sakhaniuk", | ||
"homepage": "https://dev-branch.com", | ||
"role": "Maintainer" | ||
} | ||
] | ||
} |
Please register or sign in to comment