feat: mailer internal, templates, bruno cleanup, create user, send welcome mail, mailtrap

This commit is contained in:
2026-03-26 09:46:32 +01:00
parent 095f7aabeb
commit bedc010584
16 changed files with 311 additions and 4 deletions
@@ -0,0 +1,24 @@
info:
name: Create Movie
type: http
seq: 2
http:
method: POST
url: "{{URL}}{{VERSION}}/movies"
body:
type: json
data: |-
{
"title": "Deadpool",
"runtime": "100 mins",
"year": 2010,
"genres": ["comedy", "adventure"]
}
auth: inherit
settings:
encodeUrl: true
timeout: 0
followRedirects: true
maxRedirects: 5
@@ -0,0 +1,15 @@
info:
name: Delete Movie
type: http
seq: 3
http:
method: DELETE
url: "{{URL}}{{VERSION}}/movies/{{MOVIE_ID}}"
auth: inherit
settings:
encodeUrl: true
timeout: 0
followRedirects: true
maxRedirects: 5
@@ -0,0 +1,33 @@
info:
name: Get Movies
type: http
seq: 2
http:
method: GET
url: "{{URL}}{{VERSION}}/movies?page=1&page_size=3&sort=title"
params:
- name: page
value: "1"
type: query
- name: page_size
value: "3"
type: query
- name: sort
value: title
type: query
- name: title
value: ddd
type: query
disabled: true
- name: genres
value: action
type: query
disabled: true
auth: inherit
settings:
encodeUrl: true
timeout: 0
followRedirects: true
maxRedirects: 5
@@ -0,0 +1,15 @@
info:
name: Get Single Movie
type: http
seq: 2
http:
method: GET
url: "{{URL}}{{VERSION}}/movies/{{MOVIE_ID}}"
auth: inherit
settings:
encodeUrl: true
timeout: 0
followRedirects: true
maxRedirects: 5
@@ -0,0 +1,22 @@
info:
name: Update Movie
type: http
seq: 4
http:
method: PATCH
url: "{{URL}}{{VERSION}}/movies/{{MOVIE_ID}}"
body:
type: json
data: |-
{
"year": 2001,
"title": ""
}
auth: inherit
settings:
encodeUrl: true
timeout: 0
followRedirects: true
maxRedirects: 5
@@ -0,0 +1,7 @@
info:
name: Movies
type: folder
seq: 3
request:
auth: inherit