git-pr
created pr with
16.1
added 16.2
1: 3bd44da ! 1: 9002592 chore(pgs): add validation to project names
added 16.3
1: 9002592 = 1: 9002592 chore(pgs): add validation to project names
-: ------- > 2: cd17cf4 chore: update pobj
-: ------- > 3: a00def2 chore: complete impl
changed pr name to
feat: private obj store service
added 16.4
1: 9002592 = 1: 9002592 chore(pgs): add validation to project names
2: cd17cf4 = 2: cd17cf4 chore: update pobj
3: a00def2 = 3: a00def2 chore: complete impl
-: ------- > 4: 0ed7dc9 chore: update pobj
-: ------- > 5: 8ff1131 working!
added 16.5
1: 9002592 = 1: 9002592 chore(pgs): add validation to project names
2: cd17cf4 = 2: cd17cf4 chore: update pobj
3: a00def2 = 3: a00def2 chore: complete impl
4: 0ed7dc9 = 4: 0ed7dc9 chore: update pobj
5: 8ff1131 = 5: 8ff1131 working!
-: ------- > 6: 0c8ad0d chore(obj): prep service def
cmds
checkout latest patchset:
ssh pr.pico.sh print 16 | git am -3checkout any patchset in a patch request:
ssh pr.pico.sh print 16.[rev] | git am -3add changes to patch request:
git format-patch main --stdout | ssh pr.pico.sh pr add 16
Patchset
16.5
chore(pgs): add validation to project names
Eric Bower
chore: update pobj
2024-08-18T15:27:37ZEric Bower
chore: complete impl
2024-08-18T15:57:19ZEric Bower
chore: update pobj
2024-08-18T16:02:22ZEric Bower
→ working!
2024-08-18T16:33:25ZEric Bower
chore(obj): prep service def
2024-08-18T16:37:25ZEric Bower
2024-08-19T02:01:14Z
working!
Eric Bower
2024-08-18T16:37:25ZSemantic diff summary
1 added,
0 modified,
0 signature changed,
0 removed
across 1 analyzed file
+3
-0
obj/ssh.go
#
| ... | ... | @@ -35,6 +35,9 @@ func (an *AssetNamesPriv) BucketName(sesh ssh.Session) (string, error) { | |
| 35 | 35 | func (an *AssetNamesPriv) ObjectName(sesh ssh.Session, entry *utils.FileEntry) (string, error) { | |
| 36 | 36 | return filepath.Join("/pico-private", entry.Filepath), nil | |
| 37 | 37 | } | |
| 38 | + | func (an *AssetNamesPriv) PrintObjectName(sesh ssh.Session, entry *utils.FileEntry, bucketName string) (string, error) { | |
| 39 | + | return entry.Filepath, nil | |
| 40 | + | } | |
| 38 | 41 | ||
| 39 | 42 | func StartSshServer() { | |
| 40 | 43 | logger := slog.Default() |