Skip to content

Commit e8235bb

Browse files
authored
Merge pull request #238 from cesarParra/develop
3.10.0 RC
2 parents 5330b7b + bb1a529 commit e8235bb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+984
-142
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ apexdocs changelog --previousVersionDir force-app-previous --currentVersionDir f
123123
| `--includeMetadata ` | N/A | Whether to include the file's meta.xml information: Whether it is active and and the API version | `false` | No |
124124
| `--linkingStrategy` | N/A | The strategy to use when linking to other classes. Possible values are `relative`, `no-link`, and `none` | `relative` | No |
125125
| `--customObjectsGroupName` | N/A | The name under which custom objects will be grouped in the Reference Guide | `Custom Objects` | No |
126+
| `--triggersGroupName` | N/A | The name under which triggers will be grouped in the Reference Guide | `Triggers` | No |
126127

127128
##### Linking Strategy
128129

examples/docsify/apexdocs.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { defineMarkdownConfig } from '../../src';
22

33
export default defineMarkdownConfig({
4-
sourceDir: 'classes',
4+
sourceDir: 'src',
55
targetDir: 'docs',
66
scope: ['public', 'global'],
77
linkingStrategy: 'none',

examples/docsify/docs/README.md

Lines changed: 4 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,7 @@
1-
# Apex Reference Guide
1+
# Reference Guide
22

3-
## Miscellaneous
3+
## Triggers
44

5-
### [ASampleClass](miscellaneous/ASampleClass.md)
5+
### [PaymentDeviceTrigger](triggers/PaymentDeviceTrigger.md)
66

7-
This is a class description.
8-
9-
### [CodeControl](miscellaneous/CodeControl.md)
10-
11-
### [SomeDto](miscellaneous/SomeDto.md)
12-
13-
Some description
14-
15-
## Sample Classes
16-
17-
### [SampleClass](sample-classes/SampleClass.md)
18-
19-
This is a class description.
20-
21-
## Sample Interfaces
22-
23-
### [SampleInterface](sample-interfaces/SampleInterface.md)
24-
25-
This is an interface description.
7+
This trigger is used to handle the logic for the Payment Device object.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# PaymentDeviceTrigger Trigger
2+
3+
## Trigger On Payment_Device__c
4+
5+
This trigger is used to handle the logic for the Payment Device object.
6+
7+
**Events**
8+
* Before Insert
9+
* Before Update
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/**
2+
* This trigger is used to handle the logic for the Payment Device object.
3+
*/
4+
trigger PaymentDeviceTrigger on Payment_Device__c (before insert, before update) {}

0 commit comments

Comments
 (0)