Skip to content

Commit

Permalink
reverted broken filepaths
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Medek authored and Martin Medek committed Dec 16, 2024
1 parent 4d615e7 commit 2f38704
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions examples/Kentico.Xperience.UMT.Examples/Samples/AssetSamples.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace Kentico.Xperience.UMT.Examples
public static class AssetSamples
{
public static readonly Guid MEDIA_LIBRARY_SAMPLE_GUID = new("E3A9C50C-2B76-4BA8-AC19-2F0AA64C47D5");

[Sample("mediafile.sample.fromdisk", "", "Sample of media file loaded from disk")]
public static MediaFileModel SampleMediaFile => new()
{
Expand All @@ -16,9 +16,9 @@ public static class AssetSamples
FileName = "NewTestFile",
FileExtension = ".png",
FileTitle = "Title",
FilePath = "NewTestFile.png"
FilePath = "customdir/NewTestFile.png"
};

[Sample("mediafile.sample.fromurl", "", "Sample of media file downloaded from url")]
public static MediaFileModel SampleMediaFileFromUri => new()
{
Expand All @@ -29,9 +29,9 @@ public static class AssetSamples
FileName = "NewTestFileFromUri",
FileExtension = ".jpg",
FileTitle = "Old devnet screen",
FilePath = "NewTestFileFromUri.jpg"
FilePath = "customdir/NewTestFileFromUri.jpg"
};

// https://res-5.cloudinary.com/xperience-io/image/upload/c_lfill,dpr_1,w_768/f_auto,q_auto/v1/homepage/k-02-your-real-needs-at-its-core-1600x1200px_ihqknl

[Sample("medialibrary.sample", "", "Sample of media library")]
Expand Down

0 comments on commit 2f38704

Please sign in to comment.