mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 15:30:18 +00:00
28 lines
552 B
Objective-C
28 lines
552 B
Objective-C
//
|
|
// PBWebStashController.m
|
|
//
|
|
// Created by David Catmull on 12-06-11.
|
|
//
|
|
|
|
#import "PBWebStashController.h"
|
|
#import "PBStashContentController.h"
|
|
|
|
@implementation PBWebStashController
|
|
|
|
- (void)selectCommit:(NSString *)sha
|
|
{
|
|
[[stashController superController] selectCommitForSha:sha];
|
|
}
|
|
|
|
- (NSArray*) menuItemsForPath:(NSString*)path
|
|
{
|
|
return [[stashController superController] menuItemsForPaths:[NSArray arrayWithObject:path]];
|
|
}
|
|
|
|
- (NSArray*) chooseDiffParents:(NSArray *)parents
|
|
{
|
|
return [NSArray arrayWithObject:[parents lastObject]];
|
|
}
|
|
|
|
@end
|