Are currently undocumented methods still part of the public API? #2298
Replies: 2 comments
-
|
We don't document every single method and property in our docs as it's an incredible amount of (manual) work to maintain. Rest assured, We typically don't make any method changes that would be considered breaking. In the event we do for a point-release, it's certainly documented in the changelog. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
@engram-design great, thank you very much! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I want to build a simple double opt-in flow with Formie.
Are methods like
submission.setStatus()part of the public API? It works but I didn't find any reference to it in the docs and I want to avoid using something internal that might break without notice with a future release.{% if submission and submission.status == 'unconfirmedEmail' %} {% do submission.setStatus('confirmedEmail') %} {% do craft.app.elements.saveElement(submission) %} {% endif %}Beta Was this translation helpful? Give feedback.
All reactions