Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a21e884bee | ||
|
|
faf64a8bf9 |
@@ -9,6 +9,7 @@ import (
|
|||||||
"github.com/dustinpianalto/disgoman"
|
"github.com/dustinpianalto/disgoman"
|
||||||
"github.com/dustinpianalto/geeksbot"
|
"github.com/dustinpianalto/geeksbot"
|
||||||
"github.com/dustinpianalto/geeksbot/internal/discord_utils"
|
"github.com/dustinpianalto/geeksbot/internal/discord_utils"
|
||||||
|
"github.com/dustinpianalto/geeksbot/internal/utils"
|
||||||
"github.com/dustinpianalto/geeksbot/pkg/services"
|
"github.com/dustinpianalto/geeksbot/pkg/services"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -247,4 +248,6 @@ func listCommandFunc(ctx disgoman.Context, args []string) {
|
|||||||
channelName,
|
channelName,
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_, _ = ctx.Send(fmt.Sprintf("There are currently %d open %s", len(requests), utils.PluralizeString("request", len(requests))))
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import (
|
|||||||
"log"
|
"log"
|
||||||
|
|
||||||
"github.com/dustinpianalto/geeksbot"
|
"github.com/dustinpianalto/geeksbot"
|
||||||
|
"github.com/lib/pq"
|
||||||
)
|
)
|
||||||
|
|
||||||
type messageService struct {
|
type messageService struct {
|
||||||
@@ -21,7 +22,7 @@ func (s messageService) Message(id string) (geeksbot.Message, error) {
|
|||||||
WHERE m.id = $1`
|
WHERE m.id = $1`
|
||||||
row := s.db.QueryRow(queryString, id)
|
row := s.db.QueryRow(queryString, id)
|
||||||
err := row.Scan(&m.ID, &m.CreatedAt, &m.ModifiedAt, &m.Content,
|
err := row.Scan(&m.ID, &m.CreatedAt, &m.ModifiedAt, &m.Content,
|
||||||
&m.PreviousContent, &channel_id, &author_id)
|
pq.Array(&m.PreviousContent), &channel_id, &author_id)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return geeksbot.Message{}, err
|
return geeksbot.Message{}, err
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user