We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 91d79c8 + d29517a commit d53e11cCopy full SHA for d53e11c
1 file changed
src/SqlStreamStore.HAL/Index/IndexResource.cs
@@ -4,6 +4,7 @@ namespace SqlStreamStore.HAL.Index
4
using System.Reflection;
5
using Halcyon.HAL;
6
using Microsoft.AspNetCore.Http;
7
+ using Newtonsoft.Json;
8
using Newtonsoft.Json.Linq;
9
10
internal class IndexResource : IResource
@@ -44,5 +45,7 @@ private static string GetVersion(Type type)
44
45
.Find()
46
.Browse()
47
.Add(Constants.Relations.Feed, Constants.Streams.All)));
48
+
49
+ public override string ToString() => _data.ToString(Formatting.None);
50
}
51
0 commit comments