|
|
@ -23,13 +23,15 @@ func SetEditorconfigIfExists(ctx *context.Context) { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func SetDiffViewStyle(ctx *context.Context) { |
|
|
|
func SetDiffViewStyle(ctx *context.Context) { |
|
|
|
|
|
|
|
queryStyle := ctx.Query("style") |
|
|
|
|
|
|
|
|
|
|
|
if !ctx.IsSigned { |
|
|
|
if !ctx.IsSigned { |
|
|
|
|
|
|
|
ctx.Data["IsSplitStyle"] = queryStyle == "split" |
|
|
|
return |
|
|
|
return |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
var ( |
|
|
|
var ( |
|
|
|
userStyle = ctx.User.DiffViewStyle |
|
|
|
userStyle = ctx.User.DiffViewStyle |
|
|
|
queryStyle = ctx.Query("style") |
|
|
|
|
|
|
|
style string |
|
|
|
style string |
|
|
|
) |
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|