Skip to content

Commit

Permalink
fix: add param0 desc
Browse files Browse the repository at this point in the history
  • Loading branch information
SMillerDev authored Dec 30, 2023
1 parent bcc7d76 commit 29279ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/dataservices/feed.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export class FeedService {
/**
* Marks all items in feed, started with highestReadId
*
* @param param0
* @param param0 Data for the feed
* @param param0.feedId {Number} ID number of feed to mark items as read
* @param param0.highestItemId {Number} ID number of the (most recent?) feed item to mark as read (all older items will be marked as read)
* @return {AxiosResponse} Updated feed info (unreadCount = 0) stored in data.feeds[0] property
Expand All @@ -64,7 +64,7 @@ export class FeedService {
/**
* Update a feeds properties
*
* @param param0
* @param param0 Data for the feed
* @param param0.feedId {Number} ID number of feed to update
* @param param0.pinned {Boolean} should be pinned (true) or not pinned (flse)
* @param param0.ordering {FEED_ORDER} sets feed order (0 = NEWEST, 1 = OLDEST, 2 = DEFAULT)
Expand All @@ -86,7 +86,7 @@ export class FeedService {
/**
* Deletes a feed
*
* @param param0
* @param param0 Data for the feed
* @param param0.feedId {Number} ID number of feed to delete
* @return {AxiosResponse} Null value is returned on success
*/
Expand Down

0 comments on commit 29279ab

Please sign in to comment.