~petersanchez

Los Angeles, CA

https://www.petersanchez.com

LA, CA USA - Managua, Nicaragua

~petersanchez/blog-discussion

~petersanchez/public-inbox

View more

Recent activity

Re: [PATCH links] Adding `imageUrl` to relevant GraphQL types to make it easier to fetch images from their individual hosting environments. 17 hours ago

From Peter Sanchez to ~netlandish/links-dev

Applied.

To git@git.code.netlandish.com:~netlandish/links
   d4cc8e5..1fdf348  master -> master

Re: [PATCH links] Removing test as it's not needed. The functionality of `ValidDomain` is covered in another test, which is what we care about. 17 hours ago

From Peter Sanchez to ~netlandish/links-dev

Applied.

To git@git.code.netlandish.com:~netlandish/links
   04b88f7..d4cc8e5  master -> master

[PATCH links] Adding `imageUrl` to relevant GraphQL types to make it easier to fetch images from their individual hosting environments. 17 hours ago

From Peter Sanchez to ~netlandish/links-dev

Changelog-added: `imageUrl` field to relevant GraphQL types
---
 api/gqlgen.yml                |  12 ++
 api/graph/generated.go        | 289 +++++++++++++++++++++++++++++++---
 api/graph/schema.graphqls     |   5 +-
 api/graph/schema.resolvers.go |  41 ++++-
 4 files changed, 321 insertions(+), 26 deletions(-)

diff --git a/api/gqlgen.yml b/api/gqlgen.yml
index 090a18f..6f9e4a4 100644
--- a/api/gqlgen.yml
+++ b/api/gqlgen.yml
@@ -67,3 +67,15 @@ models:
  AuditLog:
[message trimmed]

[PATCH links] Removing test as it's not needed. The functionality of `ValidDomain` is covered in another test, which is what we care about. 17 hours ago

From Peter Sanchez to ~netlandish/links-dev

---
 domain/integration_test.go | 132 -------------------------------------
 1 file changed, 132 deletions(-)

diff --git a/domain/integration_test.go b/domain/integration_test.go
index a05bb1e..6028118 100644
--- a/domain/integration_test.go
+++ b/domain/integration_test.go
@@ -4,16 +4,10 @@ import (
	"context"
	"database/sql"
	"links/models"
	"net/http"
	"net/http/httptest"
[message trimmed]

links 0.7.0 a day ago

From Peter Sanchez to ~netlandish/links-discuss

Hi all,

I am happy to announce the release of links 0.7.0.

https://git.code.netlandish.com/~netlandish/links/refs/0.7.0

Release highlights:

# Added

- You can now set a custom expiration date for personal access tokens. Maximum of 10 years.
- Ability to edit organization name in edit form.
- Unit tests for adding and updating organizations (api and web app)
- Ability to specify how you want tags to be ordered in account settings.

links 0.7.0 a day ago

From Peter Sanchez to ~netlandish/links-dev

Hi all,

I am happy to announce the release of links 0.7.0.

https://git.code.netlandish.com/~netlandish/links/refs/0.7.0

Release highlights:

# Added

- You can now set a custom expiration date for personal access tokens. Maximum of 10 years.
- Ability to edit organization name in edit form.
- Unit tests for adding and updating organizations (api and web app)
- Ability to specify how you want tags to be ordered in account settings.

Re: [PATCH links] carrier update 15 days ago

From Peter Sanchez to ~netlandish/links-dev

Applied.

To git@git.code.netlandish.com:~netlandish/links
   da7790f..3e05348  master -> master

[PATCH links] carrier update 15 days ago

From Peter Sanchez to ~netlandish/links-dev

Changelog-fixes: Issue with email attachment boundaries out of place.
---
 go.mod | 10 +++++-----
 go.sum | 21 ++++++++++-----------
 2 files changed, 15 insertions(+), 16 deletions(-)

diff --git a/go.mod b/go.mod
index eccd933..d01a2e8 100644
--- a/go.mod
+++ b/go.mod
@@ -37,9 +37,9 @@ require (
	netlandish.com/x/gobwebs-graphql v0.2.11
	netlandish.com/x/gobwebs-oauth2 v0.2.11
	netlandish.com/x/gobwebs-ses-feedback v0.2.11
[message trimmed]

Re: [PATCH links] Run modernizer on codebase. 18 days ago

From Peter Sanchez to ~netlandish/links-dev

Applied.

To git@git.code.netlandish.com:~netlandish/links
   73a8206..da7790f  master -> master

[PATCH links] Run modernizer on codebase. 18 days ago

From Peter Sanchez to ~netlandish/links-dev

---
 api/api_test.go            | 26 +++++++++++++-------------
 domain/integration_test.go | 30 +++++++++++++++---------------
 slack/commands.go          |  2 +-
 slack/routes.go            |  2 +-
 4 files changed, 30 insertions(+), 30 deletions(-)

diff --git a/api/api_test.go b/api/api_test.go
index 0dabe06..465c019 100644
--- a/api/api_test.go
+++ b/api/api_test.go
@@ -219,7 +219,7 @@ func TestDirective(t *testing.T) {
			User:    user3,
		}
[message trimmed]