UNPKG
skailan-conversations
Version:
latest (1.0.0)
1.0.0
Servicio de conversaciones y mensajería para Skailan
github.com/skailan/skailan
skailan/skailan
skailan-conversations
/
dist
/
app
/
use-cases
/
GetChannelById.js
11 lines
•
327 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
class
GetChannelById
{ channelRepository;
constructor
(
channelRepository
) {
this
.
channelRepository
= channelRepository; }
async
execute
(
request
) {
const
{ id, organizationId } = request;
return
this
.
channelRepository
.
findById
(id); } }
//# sourceMappingURL=GetChannelById.js.map