Compare commits
No commits in common. "23753fc72f4072ff8e48a0a68ab58f132d76c9ad" and "3d0c238934634bef8d49f682f971e42906cb335d" have entirely different histories.
23753fc72f
...
3d0c238934
2 changed files with 0 additions and 12 deletions
11
response.go
11
response.go
|
@ -27,17 +27,6 @@ type header struct {
|
||||||
val string
|
val string
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO add doc
|
|
||||||
func (rs *Response) BufferPDF(name string, b bytes.Buffer) *Response {
|
|
||||||
|
|
||||||
if rs.isTerminated == false {
|
|
||||||
rs.HttpResponseWriter.Header().Add("Content-Type", "application/pdf")
|
|
||||||
rs.HttpResponseWriter.Header().Add("Content-Disposition", "attachment; filename="+name)
|
|
||||||
b.WriteTo(rs.HttpResponseWriter)
|
|
||||||
}
|
|
||||||
return rs
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO add doc
|
// TODO add doc
|
||||||
func (rs *Response) Any(body any) *Response {
|
func (rs *Response) Any(body any) *Response {
|
||||||
if rs.isTerminated == false {
|
if rs.isTerminated == false {
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
package components
|
package components
|
||||||
|
|
||||||
type ContentDropdown struct {
|
type ContentDropdown struct {
|
||||||
ID string
|
|
||||||
Label string
|
Label string
|
||||||
TypeClass string // type primary, secondary, success, danger, warning, info, light, dark, link, outline-primary
|
TypeClass string // type primary, secondary, success, danger, warning, info, light, dark, link, outline-primary
|
||||||
IsDisabled bool
|
IsDisabled bool
|
||||||
|
|
Loading…
Reference in a new issue