Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
Waterbutler Helper
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Coscine
backend
libraries
Waterbutler Helper
Merge requests
!24
Hotfix/1681 fixLargeFileSizeQuery
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Hotfix/1681 fixLargeFileSizeQuery
Hotfix/1681-fixLargeFileSizeQuery
into
Sprint/2021-16
Overview
0
Commits
4
Pipelines
1
Changes
7
Merged
Petar Hristov
requested to merge
Hotfix/1681-fixLargeFileSizeQuery
into
Sprint/2021-16
3 years ago
Overview
0
Commits
4
Pipelines
1
Changes
7
Expand
coscine/issues#1681
This merge request is automatically created
0
0
Merge request reports
Compare
Sprint/2021-16
Sprint/2021-16 (base)
and
latest version
latest version
1c7d8e67
4 commits,
3 years ago
7 files
+
225
−
43
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
Search (e.g. *.vue) (Ctrl+P)
src/WaterbutlerHelper/ReturnObjects/ObjectMetaInfoReturnObject.cs
+
2
−
2
Options
@@ -7,7 +7,7 @@ namespace Coscine.WaterbutlerHelper.ReturnObjects
{
public
string
Name
{
get
;
set
;
}
public
string
Path
{
get
;
set
;
}
public
int
?
Size
{
get
;
set
;
}
public
long
?
Size
{
get
;
set
;
}
public
string
Kind
{
get
;
set
;
}
public
DateTime
?
Modified
{
get
;
set
;
}
public
DateTime
?
Created
{
get
;
set
;
}
@@ -35,7 +35,7 @@ namespace Coscine.WaterbutlerHelper.ReturnObjects
Created
=
objectMetaInfo
.
Created
;
Provider
=
objectMetaInfo
.
Provider
;
var
encodedUrl
=
HttpUtility
.
UrlEncode
(
Path
.
Substring
(
1
)
);
var
encodedUrl
=
HttpUtility
.
UrlEncode
(
Path
[
1
..]
);
UploadLink
=
$"
{
blobApiLink
}{
resource
}
/
{
encodedUrl
}
"
;
DeleteLink
=
$"
{
blobApiLink
}{
resource
}
/
{
encodedUrl
}
"
;
DownloadLink
=
$"
{
blobApiLink
}{
resource
}
/
{
encodedUrl
}
"
;
Loading