File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ export class Qiita extends Gateway {
150
150
* @param tag_id タグのID
151
151
* @return タグ
152
152
*/
153
- public checkIfFollowingTag = ( tag_id : string ) => {
153
+ public fetchTagFollowing = ( tag_id : string ) => {
154
154
return this . get < Tag > ( `${ this . url } ${ this . version } /tags/${ tag_id } /following` ) ;
155
155
}
156
156
@@ -414,7 +414,7 @@ export class Qiita extends Gateway {
414
414
* @param user_id ユーザーID
415
415
* @return 空のオブジェクト
416
416
*/
417
- public checkIfFollowingUser = ( user_id : string ) => {
417
+ public fetchIfUserFollowing = ( user_id : string ) => {
418
418
return this . get < void > ( `${ this . url } ${ this . version } /users/${ user_id } /following` ) ;
419
419
}
420
420
@@ -500,7 +500,7 @@ export class Qiita extends Gateway {
500
500
* @param item_id 投稿ID
501
501
* @return 空のオブジェクト
502
502
*/
503
- public checkIfLikedItem = ( item_id : string ) => {
503
+ public fetchIfItemLiked = ( item_id : string ) => {
504
504
return this . get < void > ( `${ this . url } ${ this . version } /items/${ item_id } /like` ) ;
505
505
}
506
506
@@ -527,7 +527,7 @@ export class Qiita extends Gateway {
527
527
* @param item_id 投稿ID
528
528
* @return 空のオブジェクト
529
529
*/
530
- public checkIfStockedItem = ( item_id : string ) => {
530
+ public fetchIfItemStocked = ( item_id : string ) => {
531
531
return this . get < void > ( `${ this . url } ${ this . version } /items/${ item_id } /stock` ) ;
532
532
}
533
533
You can’t perform that action at this time.
0 commit comments