-
Notifications
You must be signed in to change notification settings - Fork 687
SharePoint: Metadata #22546
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
SharePoint: Metadata #22546
Changes from all commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
278fc5b
SP Initial
dynaway-kmi ee15cd6
file and variable naming
dynaway-kmi a720c9a
Request digest error handling
dynaway-kmi b2ac854
Naming, Spacing
dynaway-kmi 2fbe416
added [NonDebuggable] when handling token
dynaway-kmi cca5983
variable naming
dynaway-kmi 5463adf
Data Classification
dynaway-kmi 7e11cd0
PermissionSet aded to System Application - Objects
dynaway-kmi 9a3d43e
ListId on List Item
dynaway-kmi 0b7c057
folder structure and empty lines
dynaway-kmi 7e63d78
Authorization and access property
dynaway-kmi 9a004bf
Enum comment
dynaway-kmi 514534e
Tests
dynaway-kmi 946ca48
request length
dynaway-kmi ea17965
User-Agent
dynaway-kmi fbd4f01
Error handling and request decoration
dynaway-kmi de0c7c8
Test library
dynaway-kmi 458a16a
Authorization and tests
dynaway-kmi 523f03c
fix
dynaway-kmi dfb70c9
Readme
dynaway-kmi 2b15ecd
Readme
dynaway-kmi cbee7c3
DataClassification, AuthenticationCode ...
dynaway-kmi c486ef0
Add license headers to new code files
mazhelez 59877ee
remove user credentials
dynaway-kmi c949012
remove user cred tests
dynaway-kmi 366b9d1
Merge remote-tracking branch 'origin/kmi' into KMI
dynaway-kmi 17f2143
Minor fixes
mazhelez bd0ac07
Merge branch 'main' of https://github.com/microsoft/ALAppExtensions i…
mazhelez 16cdeb3
Update versions in app.json-s
mazhelez 2062073
Hide "SharePoint Diagnostics" behind an interface + some minor improv…
mazhelez 4ba44cf
Fix referenec to interface
mazhelez 600a4de
Merge branch 'main' into KMI
mazhelez b0eadfa
Metadata
dynaway-kmi dcd0e94
Merge remote-tracking branch 'refs/remotes/origin/kmi' into kmi
dynaway-kmi 1a6bd37
Fixing events
dynaway-kmi 745c91c
Merge issue fix
dynaway-kmi 428002a
Documentation
dynaway-kmi 002198d
Merge branch 'main' into kmi
dynaway-kmi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
Modules/System/SharePoint/src/SharePointEvents.Codeunit.al
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| codeunit 9112 "SharePoint Events" | ||
| { | ||
| Access = Public; | ||
|
|
||
| [IntegrationEvent(false, false)] | ||
| /// <summary> | ||
| /// Process SharePointFile Metadata - Use to extract custom meta data into model record | ||
| /// </summary> | ||
| /// <remarks>Extend the "SharePoint File" table to store any custom data.</remarks> | ||
| /// <param name="Metadata">__metadata node of SharePointFile Json Object</param> | ||
| /// <param name="SharePointFile">SharePointFile temporary record.</param> | ||
| internal procedure ProcessSharePointFileMetadata(Metadata: JsonToken; var SharePointFile: Record "SharePoint File" temporary) | ||
| begin | ||
| end; | ||
|
|
||
| [IntegrationEvent(false, false)] | ||
| /// <summary> | ||
| /// Process SharePointListItem Metadata - Use to extract custom mete data into model record | ||
| /// </summary> | ||
| /// <remarks>Extend the "SharePoint List Item" table to store any custom data.</remarks> | ||
| /// <param name="Metadata">__metadata node of SharePointListItem Json Object</param> | ||
| /// <param name="SharePointListItem">SharePointListItem temporary record.</param> | ||
| internal procedure ProcessSharePointListItemMetadata(Metadata: JsonToken; var SharePointListItem: Record "SharePoint List Item" temporary) | ||
| begin | ||
| end; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.