Skip to content

Commit

Permalink
INTG-2972 add unique_id for issues feed (#48)
Browse files Browse the repository at this point in the history
* INTG-2972 add unique_id for issues feed

* INTG-2972 add unique_id for issues feed

* INTG-2972 add unique_id for issues feed
  • Loading branch information
MickStanciu committed Aug 17, 2023
1 parent 1e06c4d commit 16cd858
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,12 @@ Empty “groups” and “users” tables could mean that you don’t have the
- [TripPin Tutorial](https://docs.microsoft.com/en-us/power-query/samples/trippin/readme) is a great starting point to understand how to create a new data source extension for Power Query.

### Testing locally

- Open the project in Visual Studio Code.
- Build the project.
- Open the project in Visual Studio Code (Windows).
- In PowerShell Admin:
- Set-ExecutionPolicy RemoteSigned
- del .\build\
- del .\MakePQX_Release\
- Build the project (execute `\build.ps1`).
- Copy `bin\AnyCPU\Debug\SafetyCulture-Power-Query-Connector.mez` into `[My Documents]\Power BI Desktop\Custom Connectors` directory.
- Enable the `Custom data connectors` preview feature in Power BI Desktop (under `File > Options and settings > Custom data connectors`).
- Open Power BI Desktop.
Expand Down
3 changes: 2 additions & 1 deletion SafetyCulture.pq
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,8 @@ IssueType = type table [
category_label = nullable text,
modified_at = nullable datetimezone,
completed_at = nullable datetimezone,
asset_id = nullable text
asset_id = nullable text,
unique_id = nullable text
];

IssueTimelineItemType = type table [
Expand Down

0 comments on commit 16cd858

Please sign in to comment.